From 9cee04c90d3d69e98f531713267d38b172013041 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 21 Mar 2024 15:45:53 +0100 Subject: [PATCH 01/96] 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 02/96] 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 03/96] 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 264aa777f8a3a2c78b517bf0519f72806d89561b Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 22 Mar 2024 12:33:41 +0100 Subject: [PATCH 04/96] 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 05/96] 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 cd665dd877e69a12c355fcdfb4cef42e2ce866a7 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 25 Mar 2024 19:49:49 +0100 Subject: [PATCH 06/96] fix(impl): [#199] fixes for incorrect implementation --- .../job/delegate/AbstractDelegate.java | 14 +-- .../job/delegate/RelationshipDelegate.java | 5 +- .../job/delegate/SubmodelDelegate.java | 12 +-- .../validation/JsonValidatorService.java | 8 +- .../eclipse/tractusx/irs/util/JsonUtil.java | 5 +- .../controllers/PolicyStoreController.java | 4 +- .../models/CreatePolicyRequest.java | 84 ++++++++--------- .../policystore/models/PolicyResponse.java | 80 +++++++++-------- .../models/UpdatePolicyRequest.java | 5 +- .../persistence/PolicyPersistence.java | 14 ++- .../services/PolicyStoreService.java | 90 +++++++++++++------ .../PolicyStoreControllerTest.java | 9 +- .../persistence/PolicyPersistenceTest.java | 16 ++-- .../services/PolicyStoreServiceTest.java | 49 +++++----- .../IRS_Request_Collection.json | 2 +- 15 files changed, 223 insertions(+), 174 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java index 0f3664fc39..fccd653888 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java @@ -88,17 +88,16 @@ protected ItemContainer next(final ItemContainer.ItemContainerBuilder itemContai protected SubmodelDescriptor requestSubmodel(final EdcSubmodelFacade submodelFacade, final ConnectorEndpointsService connectorEndpointsService, final Endpoint digitalTwinRegistryEndpoint, - final String bpn) - throws EdcClientException { + final String bpn) throws EdcClientException { final String subprotocolBody = digitalTwinRegistryEndpoint.getProtocolInformation().getSubprotocolBody(); final Optional dspEndpoint = extractDspEndpoint(subprotocolBody); if (dspEndpoint.isPresent()) { - log.debug("Using dspEndpoint of subprotocolBody '{}' to get submodel payload", subprotocolBody); + log.debug("Using dspEndpoint of subprotocolBody '{}' to get submodel policies", subprotocolBody); return submodelFacade.getSubmodelPayload(dspEndpoint.get(), - digitalTwinRegistryEndpoint.getProtocolInformation().getHref(), - extractAssetId(subprotocolBody), bpn); + digitalTwinRegistryEndpoint.getProtocolInformation().getHref(), extractAssetId(subprotocolBody), + bpn); } else { log.info("SubprotocolBody does not contain '{}'. Using Discovery Service as fallback.", DSP_ENDPOINT); final List connectorEndpoints = connectorEndpointsService.fetchConnectorEndpoints(bpn); @@ -107,8 +106,9 @@ protected SubmodelDescriptor requestSubmodel(final EdcSubmodelFacade submodelFac } } - private SubmodelDescriptor getSubmodel(final EdcSubmodelFacade submodelFacade, final Endpoint digitalTwinRegistryEndpoint, - final List connectorEndpoints, final String bpn) throws EdcClientException { + private SubmodelDescriptor getSubmodel(final EdcSubmodelFacade submodelFacade, + final Endpoint digitalTwinRegistryEndpoint, final List connectorEndpoints, final String bpn) + throws EdcClientException { for (final String connectorEndpoint : connectorEndpoints) { try { return submodelFacade.getSubmodelPayload(connectorEndpoint, diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java index d042554283..9f10710756 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java @@ -118,7 +118,8 @@ private void processEndpoint(final Endpoint endpoint, final RelationshipAspect r log.info("Encountered usage policy exception: {}. Creating Tombstone.", e.getMessage()); itemContainerBuilder.tombstone( Tombstone.from(itemId.getGlobalAssetId(), endpoint.getProtocolInformation().getHref(), e, 0, - ProcessStep.USAGE_POLICY_VALIDATION, e.getBusinessPartnerNumber(), jsonUtil.asMap(e.getPolicy()))); + ProcessStep.USAGE_POLICY_VALIDATION, e.getBusinessPartnerNumber(), + jsonUtil.asMap(e.getPolicy()))); } catch (final EdcClientException e) { log.info("Submodel Endpoint could not be retrieved for Endpoint: {}. Creating Tombstone.", endpoint.getProtocolInformation().getHref()); @@ -126,7 +127,7 @@ private void processEndpoint(final Endpoint endpoint, final RelationshipAspect r Tombstone.from(itemId.getGlobalAssetId(), endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SUBMODEL_REQUEST)); } catch (final JsonParseException e) { - log.info("Submodel payload did not match the expected AspectType. Creating Tombstone."); + log.info("Submodel policies did not match the expected AspectType. Creating Tombstone."); itemContainerBuilder.tombstone( Tombstone.from(itemId.getGlobalAssetId(), endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SUBMODEL_REQUEST)); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java index f586c3c03b..9e9764cadb 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java @@ -86,8 +86,9 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai final List aasSubmodelDescriptors = shell.payload().getSubmodelDescriptors(); log.info("Retrieved {} SubmodelDescriptor for itemId {}", aasSubmodelDescriptors.size(), itemId); - final List filteredSubmodelDescriptorsByAspectType = shell.payload().filterDescriptorsByAspectTypes( - jobData.getAspects()); + final List filteredSubmodelDescriptorsByAspectType = shell.payload() + .filterDescriptorsByAspectTypes( + jobData.getAspects()); if (jobData.isCollectAspects()) { log.info("Collecting Submodels."); @@ -133,13 +134,13 @@ private List getSubmodels(final SubmodelDescriptor submodelDescriptor, } else { final String errors = String.join(", ", validationResult.getValidationErrors()); itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), - new IllegalArgumentException("Submodel payload validation failed. " + errors), 0, + new IllegalArgumentException("Submodel policies validation failed. " + errors), 0, ProcessStep.SCHEMA_VALIDATION)); } } catch (final JsonParseException e) { itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, RetryRegistry.ofDefaults().getDefaultConfig().getMaxAttempts(), ProcessStep.SCHEMA_VALIDATION)); - log.info("Submodel payload did not match the expected AspectType. Creating Tombstone."); + log.info("Submodel policies did not match the expected AspectType. Creating Tombstone."); } catch (final SchemaNotFoundException | InvalidSchemaException | RestClientException e) { itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SCHEMA_REQUEST)); @@ -147,7 +148,8 @@ private List getSubmodels(final SubmodelDescriptor submodelDescriptor, } catch (final UsagePolicyException e) { log.info("Encountered usage policy exception: {}. Creating Tombstone.", e.getMessage()); itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, 0, - ProcessStep.USAGE_POLICY_VALIDATION, e.getBusinessPartnerNumber(), jsonUtil.asMap(e.getPolicy()))); + ProcessStep.USAGE_POLICY_VALIDATION, e.getBusinessPartnerNumber(), + jsonUtil.asMap(e.getPolicy()))); } catch (final EdcClientException e) { log.info("Submodel Endpoint could not be retrieved for Item: {}. Creating Tombstone.", itemId); itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, 0, diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index 9d95eefe23..756f49fa63 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -54,10 +54,10 @@ public JsonValidatorService(final JsonUtil parser) { } /** - * Validate the payload against the schema. + * Validate the policies against the schema. * * @param jsonSchema the JSON schema - * @param jsonPayload the JSON payload to validate + * @param jsonPayload the JSON policies to validate * @return the validation result, containing the validation errors if applicable */ public ValidationResult validate(final String jsonSchema, final String jsonPayload) throws InvalidSchemaException { @@ -74,10 +74,10 @@ public ValidationResult validate(final String jsonSchema, final String jsonPaylo return createValidationResult(errors); } catch (final IllegalStateException | JsonParseException e) { - log.warn("Unable to validate JSON payload ({})", jsonPayload, e); + log.warn("Unable to validate JSON policies ({})", jsonPayload, e); return ValidationResult.builder() .valid(false) - .validationError("Illegal JSON payload, cannot be validated") + .validationError("Illegal JSON policies, cannot be validated") .build(); } } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java index 9f2668b3a3..e3d2edd65c 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java @@ -54,7 +54,8 @@ public class JsonUtil { /** * Map Type Reference helper */ - private static final class MapTypeReference extends TypeReference> { } + private static final class MapTypeReference extends TypeReference> { + } static { final SimpleModule simpleModule = new SimpleModule().addAbstractTypeMapping(TransferProcess.class, @@ -78,7 +79,7 @@ public String asString(final Object input) { try { return MAPPER.writeValueAsString(input); } catch (JsonProcessingException e) { - log.error("Error serializing payload", e); + log.error("Error serializing policies", e); throw new JsonParseException(e); } } diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 1caf0a65aa..d6bddb8939 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -110,7 +110,7 @@ public class PolicyStoreController { @ResponseStatus(HttpStatus.CREATED) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") public void registerAllowedPolicy(final @RequestBody CreatePolicyRequest request) { - request.payload() + request.policies() .stream() .map(payload -> { final Policy policy = edcTransformer.transformToPolicy(payload); @@ -118,7 +118,7 @@ public void registerAllowedPolicy(final @RequestBody CreatePolicyRequest request return policy; }) .forEach(policy -> service.registerPolicy(policy, - request.businessPartnerNumbers() == null ? List.of(DEFAULT) : request.businessPartnerNumbers())); + request.businessPartnerNumber() == null ? DEFAULT : request.businessPartnerNumber())); } @Operation(operationId = "getAllowedPoliciesByBpn", diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java index 3154a363ee..8a21513433 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java @@ -26,58 +26,60 @@ import java.time.OffsetDateTime; import java.util.List; -import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.json.JsonObject; import jakarta.validation.constraints.NotNull; /** - * Object for API to create policty + * Object for API to create policy */ @SuppressWarnings("FileTabCharacter") @Schema(description = "Request to add a policy") public record CreatePolicyRequest( - @NotNull @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations") OffsetDateTime validUntil, - @ArraySchema() List businessPartnerNumbers, - @NotNull @Schema(example = CreatePolicyRequest.EXAMPLE_PAYLOAD) List payload) { + @NotNull @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations", + example = "2025-12-12T23:59:59.999Z") OffsetDateTime validUntil, + @Schema() String businessPartnerNumber, + @NotNull @Schema(example = CreatePolicyRequest.EXAMPLE_PAYLOAD) List policies) { @SuppressWarnings("java:S2479") - // this value is used by open-api to show example payload + // this value is used by open-api to show example policies // \u0009 character is required for this value to be correctly shown in open-api public static final String EXAMPLE_PAYLOAD = """ - { - "validUntil": "2025-12-12T23:59:59.999Z", - "payload": { - "@context": { - "odrl": "http://www.w3.org/ns/odrl/2/" - }, - "@id": "policy-id", - "policy": { - "odrl:permission": [ - { - "odrl:action": "USE", - "odrl:constraint": { - "odrl:and": [ - { - "odrl:leftOperand": "Membership", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "active" - }, - { - "odrl:leftOperand": "PURPOSE", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "ID 3.1 Trace" - } - ] - } - } - ] - } - } - } - """; + [ + { + { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id", + "@type": "PolicyDefinitionRequestDto", + "policy": { + "@type": "Policy", + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "odrl:and": [ + { + "odrl:leftOperand": "Membership", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "active" + }, + { + "odrl:leftOperand": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.1 Trace" + } + ] + } + } + ] + } + } + ] + """; } diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java index bf009dc8cf..f48f1775ef 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java @@ -32,46 +32,48 @@ @Schema(example = PolicyResponse.EXAMPLE_PAYLOAD) public record PolicyResponse(OffsetDateTime validUntil, Payload payload) { - @SuppressWarnings({"FileTabCharacter", "java:S2479"}) - // required to show correctly example payload in open-api + @SuppressWarnings({ "FileTabCharacter", + "java:S2479" + }) + // required to show example of policies correctly in open-api public static final String EXAMPLE_PAYLOAD = """ - [ - { - "validUntil": "2025-12-12T23:59:59.999Z", - "payload": { - "@context": { - "odrl": "http://www.w3.org/ns/odrl/2/" - }, - "@id": "policy-id", - "policy": { - "odrl:permission": [ - { - "odrl:action": "USE", - "odrl:constraint": { - "odrl:and": [ - { - "odrl:leftOperand": "Membership", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "active" - }, - { - "odrl:leftOperand": "PURPOSE", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "ID 3.1 Trace" - } - ] - } - } - ] - } - } - } - ] - """; + [ + { + "validUntil": "2025-12-12T23:59:59.999Z", + "payload": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id", + "policy": { + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "odrl:and": [ + { + "odrl:leftOperand": "Membership", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "active" + }, + { + "odrl:leftOperand": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.1 Trace" + } + ] + } + } + ] + } + } + } + ] + """; public static PolicyResponse fromPolicy(final Policy policy) { return PolicyResponse.builder() diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java index ead5a738bc..c247b19821 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java @@ -32,9 +32,8 @@ /** * Request object for policy update */ -@Schema(description = "Request to add a policy") +@Schema(description = "Request to update a policy") public record UpdatePolicyRequest( @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations") @NotNull OffsetDateTime validUntil, - List businessPartnerNumbers, - List policiesIds) { + List businessPartnerNumbers, List policiesIds) { } diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java index 84a92b6316..64fb2885c0 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java @@ -70,15 +70,11 @@ public PolicyPersistence(@Qualifier(POLICY_BLOB_PERSISTENCE) final BlobPersisten this.mapper = mapper; } - public void save(final List bpns, final Policy policy) { - final Map> storedBpnToPolicies = bpns.stream() - .collect(Collectors.toMap(bpn -> bpn, - this::readAll)); - storedBpnToPolicies.forEach((bpn, policies) -> { - checkIfPolicyAlreadyExists(policy, policies); - policies.add(policy); - save(bpn, policies); - }); + public void save(final String bpn, final Policy policy) { + final List policiesForBpn = readAll(bpn); + checkIfPolicyAlreadyExists(policy, policiesForBpn); + policiesForBpn.add(policy); + save(bpn, policiesForBpn); } private static void checkIfPolicyAlreadyExists(final Policy policy, final List policies) { diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index 725bfd4d97..d710392e1a 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -76,12 +76,12 @@ public PolicyStoreService(final DefaultAcceptedPoliciesConfig defaultAcceptedPol this.clock = clock; } - public void registerPolicy(final Policy policy, final List businessPartnersNumbers) { + public void registerPolicy(final Policy policy, final String businessPartnersNumber) { validatePolicy(policy); policy.setCreatedOn(OffsetDateTime.now(clock)); log.info("Registering new policy with id {}, valid until {}", policy.getPolicyId(), policy.getValidUntil()); try { - persistence.save(businessPartnersNumbers, policy); + persistence.save(businessPartnersNumber, policy); } catch (final PolicyStoreException e) { throw new ResponseStatusException(HttpStatus.BAD_REQUEST, e.getMessage(), e); } @@ -105,18 +105,27 @@ private void validatePolicy(final Policy policy) { } } - public Map> getPolicies(final List bpns) { - if (bpns == null) { + /** + * Finds policies by list of BPN. + * + * @param bpnList list of BPNs + * @return a map that maps BPN to list of policies + */ + public Map> getPolicies(final List bpnList) { + if (bpnList == null) { return getAllStoredPolicies(); } else { - return bpns.stream().map(bpn -> new AbstractMap.SimpleEntry<>(bpn, getStoredPolicies(List.of(bpn)))).collect(Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); + return bpnList.stream() + .map(bpn -> new AbstractMap.SimpleEntry<>(bpn, getStoredPolicies(List.of(bpn)))) + .collect( + Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); } } - public List getStoredPolicies(final List bpns) { - log.info("Reading all stored polices for BPN {}", bpns); + public List getStoredPolicies(final List bpnls) { + log.info("Reading all stored polices for BPN {}", bpnls); final List storedPolicies = new LinkedList<>(); - bpns.forEach(bpn -> storedPolicies.addAll(persistence.readAll(bpn))); + bpnls.forEach(bpn -> storedPolicies.addAll(persistence.readAll(bpn))); if (storedPolicies.isEmpty()) { log.info("Policy store is empty, returning default values from config"); @@ -145,37 +154,66 @@ public void deletePolicy(final String policyId) { } catch (final PolicyStoreException e) { throw new ResponseStatusException(HttpStatus.NOT_FOUND, e.getMessage(), e); } + } + private void deletePolicyForEachBpn(final String policyId, List bpnList) { + for (final String bpn : bpnList) { + persistence.delete(bpn, policyId); + } } public void updatePolicies(final UpdatePolicyRequest request) { for (final String policyId : request.policiesIds()) { - updatePolicy(policyId, request.validUntil(), request.businessPartnerNumbers() == null ? List.of(DEFAULT) : request.businessPartnerNumbers()); + updatePolicy(policyId, request.validUntil(), + request.businessPartnerNumbers() == null ? List.of(DEFAULT) : request.businessPartnerNumbers()); } } - public void updatePolicy(final String policyId, final OffsetDateTime validUntil, final List bpns) { + public void updatePolicy(final String policyId, final OffsetDateTime newValidUntil, final List newBpns) { + + log.info("Updating policy with id {}", policyId); + + final List bpnsContainingPolicyId; try { - log.info("Updating policy with id {}", policyId); - final List bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(getAllStoredPolicies(), - policyId); + final Map> allStoredPolicies = getAllStoredPolicies(); + bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(allStoredPolicies, policyId); + } catch (PolicyStoreException e) { + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); + } - final Policy policyToUpdate = getStoredPolicies(bpnsContainingPolicyId).stream() - .filter(PolicyHelper.havingPolicyId( - policyId)) - .findAny() - .orElseThrow( - () -> new PolicyStoreException( - "Policy with id '" - + policyId - + "' doesn't exists!")); - - policyToUpdate.update(validUntil); - bpnsContainingPolicyId.forEach(bpn -> persistence.delete(bpn, policyId)); - persistence.save(bpns, policyToUpdate); + final Policy policyToUpdate; + try { + policyToUpdate = requirePolicy(policyId, bpnsContainingPolicyId); } catch (final PolicyStoreException e) { throw new ResponseStatusException(HttpStatus.NOT_FOUND, e.getMessage(), e); } + + try { + deletePolicyForEachBpn(policyId, bpnsContainingPolicyId); + } catch (final PolicyStoreException e) { + // this is an internal server error, because normally this should not happen + // because the check if policy exists was already carried out above + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); + } + + try { + policyToUpdate.update(newValidUntil); + + for (final String bpn : newBpns) { + persistence.save(bpn, policyToUpdate); + } + + } catch (final PolicyStoreException e) { + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); + } + } + + private Policy requirePolicy(final String policyId, final List bpnsContainingPolicyId) { + return getStoredPolicies(bpnsContainingPolicyId).stream() + .filter(PolicyHelper.havingPolicyId(policyId)) + .findAny() + .orElseThrow(() -> new PolicyStoreException( + "Policy with id '" + policyId + "' doesn't exists!")); } @Override diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java index b504e5bdab..61ca381dd5 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java @@ -66,7 +66,7 @@ class PolicyStoreControllerTest { public static final String EXAMPLE_PAYLOAD = """ { "validUntil": "2025-12-12T23:59:59.999Z", - "payload": { + "policies": { "@context": { "odrl": "http://www.w3.org/ns/odrl/2/" }, @@ -123,10 +123,10 @@ void registerAllowedPolicy() { // act testee.registerAllowedPolicy( - new CreatePolicyRequest(now.plusMinutes(1), null, List.of(jsonObject.get("payload").asJsonObject()))); + new CreatePolicyRequest(now.plusMinutes(1), null, List.of(jsonObject.get("policies").asJsonObject()))); // assert - verify(service).registerPolicy(any(), eq(List.of("default"))); + verify(service).registerPolicy(any(), eq("default")); } @Test @@ -174,7 +174,8 @@ void deleteAllowedPolicy() { void updateAllowedPolicy() { // arrange final String policyId = "policyId"; - final UpdatePolicyRequest request = new UpdatePolicyRequest(OffsetDateTime.now(), List.of("bpn"),List.of(policyId)); + final UpdatePolicyRequest request = new UpdatePolicyRequest(OffsetDateTime.now(), List.of("bpn"), + List.of(policyId)); // act testee.updateAllowedPolicy(request); diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java index 60a48e3c00..4bbf0e6eee 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java @@ -74,7 +74,7 @@ void save() throws BlobPersistenceException { final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); // act - testee.save(List.of("testBpn"), policy); + testee.save("testBpn", policy); // assert verify(mockPersistence).putBlob(anyString(), any()); @@ -86,7 +86,7 @@ void saveWithoutBpn() throws BlobPersistenceException { final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); // act - testee.save(List.of("default"), policy); + testee.save("default", policy); // assert verify(mockPersistence).putBlob(anyString(), any()); @@ -100,8 +100,7 @@ void saveDuplicate() throws BlobPersistenceException, JsonProcessingException { when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); // act & assert - final List bpn = List.of("testBpn"); - assertThatThrownBy(() -> testee.save(bpn, policy)).isInstanceOf(PolicyStoreException.class); + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); } @Test @@ -112,8 +111,7 @@ void saveWithError() throws BlobPersistenceException { new BlobPersistenceException("test", new IllegalStateException())); // act & assert - final List bpn = List.of("testBpn"); - assertThatThrownBy(() -> testee.save(bpn, policy)).isInstanceOf(PolicyStoreException.class); + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); } @Test @@ -124,8 +122,7 @@ void saveWithWriteError() throws BlobPersistenceException { .putBlob(any(), any()); // act & assert - final List bpn = List.of("testBpn"); - assertThatThrownBy(() -> testee.save(bpn, policy)).isInstanceOf(PolicyStoreException.class); + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); } @Test @@ -144,7 +141,8 @@ void delete() throws BlobPersistenceException, JsonProcessingException { } @Test - void deleteShouldThrowExceptionIfPolicyWithIdDoesntExists() throws BlobPersistenceException, JsonProcessingException { + void deleteShouldThrowExceptionIfPolicyWithIdDoesntExists() + throws BlobPersistenceException, JsonProcessingException { // arrange final var policy = new Policy("policyId", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(List.of(policy)))); diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java index 93a0f38afe..25d26fc553 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java @@ -26,6 +26,7 @@ import static java.util.Collections.emptyList; import static java.util.Collections.emptyMap; import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; @@ -87,10 +88,10 @@ void registerPolicy() { final Policy policy = new Policy("testId", now, now.plusMinutes(1), emptyList()); // act - testee.registerPolicy(policy, List.of(BPN)); + testee.registerPolicy(policy, BPN); // assert - verify(persistence).save(eq(List.of(BPN)), any()); + verify(persistence).save(eq(BPN), any()); } @Test @@ -100,10 +101,10 @@ void registerPolicyWithPermission() { final Policy policy = new Policy("testId", now, now.plusMinutes(1), createPermissions()); // act - testee.registerPolicy(policy, List.of(BPN)); + testee.registerPolicy(policy, BPN); // assert - verify(persistence).save(eq(List.of(BPN)), policyCaptor.capture()); + verify(persistence).save(eq(BPN), policyCaptor.capture()); assertThat(policyCaptor.getValue()).isNotNull(); List permissionList = policyCaptor.getValue().getPermissions(); @@ -121,8 +122,7 @@ void registerPolicyShouldThrowResponseStatusException() { doThrow(new PolicyStoreException("")).when(persistence).save(any(), any()); // assert - final List bpns = List.of(BPN); - assertThrows(ResponseStatusException.class, () -> testee.registerPolicy(policy, bpns)); + assertThatThrownBy(() -> testee.registerPolicy(policy, BPN)).isInstanceOf(ResponseStatusException.class); } @Test @@ -226,7 +226,7 @@ void whenRegisterPolicyWithMissingConstraintShouldThrowException() { } @Test - void whenUpdate() { + void updatePolicyWithBpnAndValidUntilChanged() { // arrange final String policyId = "testId"; @@ -241,8 +241,8 @@ void whenUpdate() { final Policy testPolicy = new Policy(policyId, createdOn, originalValidUntil, permissions); when(persistence.readAll()).thenReturn(Map.of(originalBpn, List.of(testPolicy))); - when(persistence.readAll(originalBpn)).thenReturn( - List.of(new Policy(policyId, createdOn, originalValidUntil, permissions))); + // get policies for bpn + when(persistence.readAll(originalBpn)).thenReturn(List.of(testPolicy)); // act testee.updatePolicies(new UpdatePolicyRequest(expectedValidUntil, List.of(expectedBpn), List.of(policyId))); @@ -251,9 +251,10 @@ void whenUpdate() { verify(persistence).delete(originalBpn, policyId); final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence).save(eq(List.of(expectedBpn)), policyCaptor.capture()); + verify(persistence).save(eq(expectedBpn), policyCaptor.capture()); assertThat(policyCaptor.getValue().getCreatedOn()).isEqualTo(createdOn); assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(expectedValidUntil); + } @SuppressWarnings("unchecked") @@ -281,18 +282,21 @@ void updatePolicies_shouldAddPolicyToEachBpn() { // ASSERT verify(persistence).delete("bpn2", policyId); - final var bpnsCaptor = ArgumentCaptor.forClass(List.class); + final var bpnCaptor = ArgumentCaptor.forClass(String.class); final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence).save(bpnsCaptor.capture(), policyCaptor.capture()); + verify(persistence, times(2)).save(bpnCaptor.capture(), policyCaptor.capture()); // policy added to each BPN - assertThat(policyCaptor.getValue().getPolicyId()).isEqualTo(policyId); - assertThat(bpnsCaptor.getValue()).containsAll(List.of("bpn1", "bpn2")); + assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId); + assertThat(bpnCaptor.getAllValues().get(0)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId); + assertThat(bpnCaptor.getAllValues().get(1)).isEqualTo("bpn2"); + } @SuppressWarnings("unchecked") @Test - void updatePolicies_shouldAddBpnsToEachPolicy() { + void updatePolicies_shouldAssociateEachPolicyGivenPolicyWithEachGivenBpn() { // ARRANGE final String policyId1 = "testId1"; @@ -325,17 +329,22 @@ void updatePolicies_shouldAddBpnsToEachPolicy() { verify(persistence).delete(bpn2, policyId1); verify(persistence).delete(bpn2, policyId2); - final var bpnsCaptor = ArgumentCaptor.forClass(List.class); + final var bpnsCaptor = ArgumentCaptor.forClass(String.class); final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence, times(2)).save(bpnsCaptor.capture(), policyCaptor.capture()); + verify(persistence, times(4)).save(bpnsCaptor.capture(), policyCaptor.capture()); // each BPNs added to policy 1 assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId1); - assertThat(bpnsCaptor.getAllValues().get(0)).containsAll(List.of("bpn1", "bpn2")); + assertThat(bpnsCaptor.getAllValues().get(0)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId1); + assertThat(bpnsCaptor.getAllValues().get(1)).isEqualTo("bpn2"); // each BPNs added to policy 2 - assertThat(bpnsCaptor.getAllValues().get(1)).containsAll(List.of("bpn1", "bpn2")); - assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId2); + assertThat(policyCaptor.getAllValues().get(2).getPolicyId()).isEqualTo(policyId2); + assertThat(bpnsCaptor.getAllValues().get(2)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(3).getPolicyId()).isEqualTo(policyId2); + assertThat(bpnsCaptor.getAllValues().get(3)).isEqualTo("bpn2"); + } @Test diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 0f0b8d6f68..c6abc27a0b 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -3299,7 +3299,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t},\n\t\"@id\": \"policy-id\",\n\t\"policy\": {\n\t\t\"odrl:permission\": [\n\t\t\t{\n\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}" + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"policies\": [\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n\t]\n}" }, "parameters": [], "headers": [ From b697f631a3e1910567c05464a7e1290f581eae66 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 21:24:46 +0100 Subject: [PATCH 07/96] fix(impl): [#199] Add 500er to OpenApiExamples.java --- .../tractusx/irs/configuration/OpenApiExamples.java | 7 +++++++ 1 file changed, 7 insertions(+) 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..8d67465445 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 @@ -99,6 +99,13 @@ public class OpenApiExamples { public void createExamples(final Components components) { components.addExamples("job-handle", toExample(createJobHandle(JOB_HANDLE_ID_1))); + components.addExamples("error-response-500", toExample(ErrorResponse.builder() + .withMessages( + List.of("InternalServerError")) + .withError("Internal Server Error") + .withStatusCode( + HttpStatus.INTERNAL_SERVER_ERROR) + .build())); components.addExamples("error-response-400", toExample(ErrorResponse.builder() .withMessages( List.of("BadRequestException")) From c7bd17d43deeb5166e8750aade0cfed8ba762cee Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 21:51:33 +0100 Subject: [PATCH 08/96] fix(impl): [#199] Add CreatePoliciesResponse --- .../models/CreatePoliciesResponse.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java new file mode 100644 index 0000000000..9111fca9e9 --- /dev/null +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java @@ -0,0 +1,35 @@ +/******************************************************************************** + * 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.policystore.models; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Builder; +import org.eclipse.tractusx.irs.edc.client.policy.Policy; + +/** + * Response for registration of policy. + */ +@Builder +public record CreatePoliciesResponse(@Schema(description = "ID of the registered policy") String policyId) { + + public static CreatePoliciesResponse fromPolicy(final Policy policy) { + return CreatePoliciesResponse.builder().policyId(policy.getPolicyId()).build(); + } +} From 6c7fd6f11b958f38ee077356d4997ebbeaf4b4f4 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 21:52:39 +0100 Subject: [PATCH 09/96] fix(impl): [#199] Correct CreatePolicyRequest OpenAPI --- .../models/CreatePolicyRequest.java | 86 ++++++++++--------- 1 file changed, 47 insertions(+), 39 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java index 8a21513433..07901d178e 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java @@ -24,7 +24,6 @@ package org.eclipse.tractusx.irs.policystore.models; import java.time.OffsetDateTime; -import java.util.List; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.json.JsonObject; @@ -36,50 +35,59 @@ @SuppressWarnings("FileTabCharacter") @Schema(description = "Request to add a policy") public record CreatePolicyRequest( - @NotNull @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations", - example = "2025-12-12T23:59:59.999Z") OffsetDateTime validUntil, - @Schema() String businessPartnerNumber, - @NotNull @Schema(example = CreatePolicyRequest.EXAMPLE_PAYLOAD) List policies) { + + @NotNull // + @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations.", + example = "2025-12-12T23:59:59.999Z") // + OffsetDateTime validUntil, // + + @Schema(description = """ + The business partner number (BPN) for which the policy should be registered. + This parameter is optional. + If not set the policy is registered for each existing BPN. + """, example = "BPNL00000123ABCD") // + String businessPartnerNumber, + + @NotNull // + @Schema(description = "The policy payload.", example = CreatePolicyRequest.EXAMPLE_PAYLOAD) // + JsonObject payload) { @SuppressWarnings("java:S2479") // this value is used by open-api to show example policies // \u0009 character is required for this value to be correctly shown in open-api public static final String EXAMPLE_PAYLOAD = """ - [ - { - { - "@context": { - "odrl": "http://www.w3.org/ns/odrl/2/" - }, - "@id": "policy-id", - "@type": "PolicyDefinitionRequestDto", - "policy": { - "@type": "Policy", - "odrl:permission": [ - { - "odrl:action": "USE", - "odrl:constraint": { - "odrl:and": [ - { - "odrl:leftOperand": "Membership", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "active" + { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id", + "@type": "PolicyDefinitionRequestDto", + "policy": { + "@type": "Policy", + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "odrl:and": [ + { + "odrl:leftOperand": "Membership", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "active" + }, + { + "odrl:leftOperand": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" }, - { - "odrl:leftOperand": "PURPOSE", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "ID 3.1 Trace" - } - ] - } + "odrl:rightOperand": "ID 3.1 Trace" + } + ] } - ] - } - } - ] + } + ] + } + } """; } From f17fedafbe7618e0b8d2f65f11970abf49293934 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 22:13:22 +0100 Subject: [PATCH 10/96] fix(impl): [#199] Add BPN regex constant --- .../irs/policystore/controllers/PolicyStoreController.java | 2 ++ .../irs/policystore/models/CreatePolicyRequest.java | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index d6bddb8939..4364742eba 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -77,6 +77,8 @@ }) public class PolicyStoreController { + public static final String BPN_REGEX = "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}"; + private final PolicyStoreService service; private final EdcTransformer edcTransformer; private static final String DEFAULT = "default"; diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java index 07901d178e..9b297e5979 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java @@ -23,11 +23,14 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.policystore.models; +import static org.eclipse.tractusx.irs.policystore.controllers.PolicyStoreController.BPN_REGEX; + import java.time.OffsetDateTime; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.json.JsonObject; import jakarta.validation.constraints.NotNull; +import jakarta.validation.constraints.Pattern; /** * Object for API to create policy @@ -45,8 +48,8 @@ public record CreatePolicyRequest( The business partner number (BPN) for which the policy should be registered. This parameter is optional. If not set the policy is registered for each existing BPN. - """, example = "BPNL00000123ABCD") // - String businessPartnerNumber, + """, example = "BPNL1234567890AB") // + @Pattern(regexp = BPN_REGEX, message = " Invalid BPN.") String businessPartnerNumber, @NotNull // @Schema(description = "The policy payload.", example = CreatePolicyRequest.EXAMPLE_PAYLOAD) // From df32eb27531da21e93b59092564512c28641abef Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 22:14:11 +0100 Subject: [PATCH 11/96] fix(impl): [#199] Fix OpenAPI --- .../policystore/controllers/PolicyStoreController.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 4364742eba..6da98f51fa 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -88,7 +88,15 @@ public class PolicyStoreController { security = @SecurityRequirement(name = "api_key"), tags = { "Item Relationship Service" }, description = "Register a policy that should be accepted in EDC negotiation.") @ApiResponses(value = { @ApiResponse(responseCode = "201"), - @ApiResponse(responseCode = "400", description = "Policy registration failed.", + @ApiResponse(responseCode = "500", + description = "Policy registration failed due to an internal error.", + content = { @Content(mediaType = APPLICATION_JSON_VALUE, + schema = @Schema(implementation = ErrorResponse.class), + examples = @ExampleObject(name = "error", + ref = "#/components/examples/error-response-500")) + }), + @ApiResponse(responseCode = "400", + description = "Policy registration failed due to an invalid request.", content = { @Content(mediaType = APPLICATION_JSON_VALUE, schema = @Schema(implementation = ErrorResponse.class), examples = @ExampleObject(name = "error", From 00dfa3c83b1924855bbf6b466fe546c645ec1779 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 27 Mar 2024 22:33:01 +0100 Subject: [PATCH 12/96] fix(impl): [#199] Update insomnia collection for POST policy --- local/testing/request-collection/IRS_Request_Collection.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index c6abc27a0b..1e512acea8 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -139,7 +139,7 @@ { "_id": "req_95aa08cefddc4743afc85fcabf40e4ee", "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", - "modified": 1711099862861, + "modified": 1711573295984, "created": 1687243182397, "url": "{{IRS_HOST}}/irs/policies", "name": "Register policy", @@ -147,7 +147,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"payload\": [\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"test-1\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"test-12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n\t]\n}" + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"x\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" }, "parameters": [], "headers": [ @@ -165,7 +165,6 @@ }, "metaSortKey": -1683962737633.5, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, From 7e07b493e3678a1e98c62c79f4a894f018e9da97 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:47:32 +0100 Subject: [PATCH 13/96] fix(impl): [#199] Improve variable naming --- .../org/eclipse/tractusx/irs/IrsApplicationTests.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java index 8fc619a1e5..c3b0e50fc1 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java @@ -77,11 +77,12 @@ class IrsApplicationTests { @Test void generatedOpenApiMatchesContract() throws Exception { - final String generatedYaml = this.restTemplate.getForObject("http://localhost:" + port + "/api/api-docs.yaml", String.class); - final InputStream fixedYaml = Files.newInputStream(Path.of("../docs/src/api/irs-api.yaml")); + final String generatedYaml = this.restTemplate.getForObject("http://localhost:" + port + "/api/api-docs.yaml", + String.class); + final InputStream definedYaml = Files.newInputStream(Path.of("../docs/src/api/irs-api.yaml")); final ObjectMapper mapper = new ObjectMapper(new YAMLFactory()); - final Map fixedYamlMap = mapper.readerForMapOf(Object.class).readValue(fixedYaml); + final Map definedYamlMap = mapper.readerForMapOf(Object.class).readValue(definedYaml); final Map generatedYamlMap = mapper.readerForMapOf(Object.class).readValue(generatedYaml); // To correctly display both documentations examples - manual and generated by annotations - @@ -93,7 +94,8 @@ void generatedOpenApiMatchesContract() throws Exception { .ignoringFields("components.schemas.Jobs.example") .ignoringFields("components.schemas.Policy") .ignoringFields("components.schemas.BatchResponse.example") - .isEqualTo(fixedYamlMap); + .isEqualTo(definedYamlMap); + } @Test From 4a209189ff045a6effbb06364c2c89c9930aa497 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:49:22 +0100 Subject: [PATCH 14/96] fix(impl): [#199] Add BPN validator --- .../controllers/PolicyStoreController.java | 3 +- .../BusinessPartnerNumberListValidator.java | 53 +++++++++++++ .../ValidListOfBusinessPartnerNumbers.java | 43 ++++++++++ ...usinessPartnerNumberListValidatorTest.java | 79 +++++++++++++++++++ 4 files changed, 177 insertions(+), 1 deletion(-) create mode 100644 irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java create mode 100644 irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java create mode 100644 irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 6da98f51fa..6324ac0e00 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -51,6 +51,7 @@ import org.eclipse.tractusx.irs.policystore.models.PolicyResponse; import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; import org.eclipse.tractusx.irs.policystore.services.PolicyStoreService; +import org.eclipse.tractusx.irs.policystore.validators.BusinessPartnerNumberListValidator; import org.springframework.http.HttpStatus; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.DeleteMapping; @@ -77,7 +78,7 @@ }) public class PolicyStoreController { - public static final String BPN_REGEX = "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}"; + public static final String BPN_REGEX = BusinessPartnerNumberListValidator.BPN_REGEX; private final PolicyStoreService service; private final EdcTransformer edcTransformer; diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java new file mode 100644 index 0000000000..7cd81e3f8e --- /dev/null +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java @@ -0,0 +1,53 @@ +/******************************************************************************** + * 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.policystore.validators; + +import java.util.List; +import java.util.regex.Pattern; + +import jakarta.validation.ConstraintValidator; +import jakarta.validation.ConstraintValidatorContext; + +public class BusinessPartnerNumberListValidator + implements ConstraintValidator> { + + public static final String BPN_REGEX = "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}"; + + private static final Pattern PATTERN = Pattern.compile(BPN_REGEX); + + @Override + public boolean isValid(List value, ConstraintValidatorContext context) { + if (value == null || value.isEmpty()) { + return true; + } + + for (int i = 0; i < value.size(); i++) { + if (!PATTERN.matcher(value.get(i)).matches()) { + context.disableDefaultConstraintViolation(); + context.buildConstraintViolationWithTemplate( + "The business partner number at index %d is invalid (should conform to pattern '%s')".formatted( + i, BPN_REGEX)).addConstraintViolation(); + return false; + } + } + + return true; + } +} \ No newline at end of file diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java new file mode 100644 index 0000000000..bd68f94617 --- /dev/null +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java @@ -0,0 +1,43 @@ +/******************************************************************************** + * 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.policystore.validators; + +import java.lang.annotation.Documented; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import jakarta.validation.Constraint; +import jakarta.validation.Payload; + +@Documented +@Constraint(validatedBy = BusinessPartnerNumberListValidator.class) +@Target({ ElementType.FIELD, + ElementType.PARAMETER +}) +@Retention(RetentionPolicy.RUNTIME) +public @interface ValidListOfBusinessPartnerNumbers { + String message() default "Invalid list of business partner numbers"; + + Class[] groups() default { }; + + Class[] payload() default { }; +} \ No newline at end of file diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java new file mode 100644 index 0000000000..018f9da437 --- /dev/null +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java @@ -0,0 +1,79 @@ +/******************************************************************************** + * 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.policystore.validators; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.verify; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +import jakarta.validation.ConstraintValidatorContext; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Answers; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + +@ExtendWith(MockitoExtension.class) +public class BusinessPartnerNumberListValidatorTest { + + public static final String VALID_BPN_1 = "BPNL1234567890AB"; + public static final String VALID_BPN_2 = "BPNL123456789012"; + + @InjectMocks + private BusinessPartnerNumberListValidator validator; + + @Captor + private ArgumentCaptor messageCaptor; + + @Mock(answer = Answers.RETURNS_DEEP_STUBS) + private ConstraintValidatorContext contextMock; + + @Test + void withEmptyListOfStrings() { + assertThat(validator.isValid(Collections.emptyList(), contextMock)).isTrue(); + } + + @Test + void withNull() { + assertThat(validator.isValid(null, contextMock)).isTrue(); + } + + @Test + void withValidListOfStrings() { + List validList = Arrays.asList(VALID_BPN_1, VALID_BPN_2); + assertThat(validator.isValid(validList, contextMock)).isTrue(); + } + + @Test + void withListContainingInvalidBPN() { + List invalidList = Arrays.asList(VALID_BPN_1, "INVALID_BPN", VALID_BPN_2); + assertThat(validator.isValid(invalidList, contextMock)).isFalse(); + // verify(contextMock).buildConstraintViolationWithTemplate( + //// startsWith("Element at index 1 does not match the pattern")); + verify(contextMock).buildConstraintViolationWithTemplate(messageCaptor.capture()); + assertThat(messageCaptor.getValue()).contains("BPN").contains(" index 1 ").contains("invalid"); + } +} From 5dee36ac44c02bb21d52fbc9dc068824df5e7bdf Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:51:42 +0100 Subject: [PATCH 15/96] fix(impl): [#199] Fix api doc --- docs/src/api/irs-api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 406fcf0808..058dbf70a6 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -2964,7 +2964,7 @@ components: UpdatePolicyRequest: type: object additionalProperties: false - description: Request to add a policy + description: Request to update a policy properties: businessPartnerNumbers: type: array From d5000256d2a63edf9916442cb489da8b856252b1 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:52:30 +0100 Subject: [PATCH 16/96] fix(impl): [#199] Fix UpdatePolicyRequest attribute naming --- docs/src/api/irs-api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 058dbf70a6..bdc7aa7534 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -2970,7 +2970,7 @@ components: type: array items: type: string - policiesIds: + policyIds: type: array items: type: string From fba5c64782acab126219ae09f4c6196a4d4fd23b Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:53:32 +0100 Subject: [PATCH 17/96] fix(impl): [#199] Fix UpdatePolicyRequest (attribute name and validators) --- .../models/UpdatePolicyRequest.java | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java index c247b19821..cf10874e5d 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/UpdatePolicyRequest.java @@ -27,13 +27,27 @@ import java.util.List; import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.validation.constraints.NotEmpty; import jakarta.validation.constraints.NotNull; +import org.eclipse.tractusx.irs.policystore.validators.ValidListOfBusinessPartnerNumbers; /** * Request object for policy update */ @Schema(description = "Request to update a policy") public record UpdatePolicyRequest( - @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations") @NotNull OffsetDateTime validUntil, - List businessPartnerNumbers, List policiesIds) { + + @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations.") // + @NotNull // + OffsetDateTime validUntil, // + + @Schema(description = "Business Partner Number (BPN).") // + @ValidListOfBusinessPartnerNumbers // + List businessPartnerNumbers, // + + @Schema(description = "The IDs of the policies to be updated.") // + @NotNull // + @NotEmpty // + List policyIds // +) { } From bb09996c3ceb1977248877666919b2a4fc67ae48 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:54:32 +0100 Subject: [PATCH 18/96] fix(impl): [#199] PolicyPersistence: return saved policy --- .../irs/policystore/persistence/PolicyPersistence.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java index 64fb2885c0..c240987eed 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistence.java @@ -70,11 +70,12 @@ public PolicyPersistence(@Qualifier(POLICY_BLOB_PERSISTENCE) final BlobPersisten this.mapper = mapper; } - public void save(final String bpn, final Policy policy) { + public Policy save(final String bpn, final Policy policy) { final List policiesForBpn = readAll(bpn); checkIfPolicyAlreadyExists(policy, policiesForBpn); policiesForBpn.add(policy); save(bpn, policiesForBpn); + return policy; } private static void checkIfPolicyAlreadyExists(final Policy policy, final List policies) { From 01bda7904450c20d8ac0e46d6b1581e2d7ef019d Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 01:57:23 +0100 Subject: [PATCH 19/96] fix(impl): [#199] Correct updateAllowedPolicy API doc and code formatting --- .../controllers/PolicyStoreController.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 6324ac0e00..00d3acc2ea 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -196,10 +196,17 @@ public void deleteAllowedPolicy(@PathVariable("policyId") final String policyId) service.deletePolicy(policyId); } - @Operation(operationId = "updateAllowedPolicy", summary = "Updates an existing policy.", + @Operation(operationId = "updateAllowedPolicy", summary = "Updates existing policies.", security = @SecurityRequirement(name = "api_key"), tags = { "Item Relationship Service" }, - description = "Updates an existing policy.") + description = "Updates existing policies.") @ApiResponses(value = { @ApiResponse(responseCode = "200"), + @ApiResponse(responseCode = "500", + description = "Updating policies failed due to an internal error.", + content = { @Content(mediaType = APPLICATION_JSON_VALUE, + schema = @Schema(implementation = ErrorResponse.class), + examples = @ExampleObject(name = "error", + ref = "#/components/examples/error-response-500")) + }), @ApiResponse(responseCode = "400", description = "Policy update failed.", content = { @Content(mediaType = APPLICATION_JSON_VALUE, schema = @Schema(implementation = ErrorResponse.class), @@ -222,7 +229,7 @@ public void deleteAllowedPolicy(@PathVariable("policyId") final String policyId) @PutMapping("/policies") @ResponseStatus(HttpStatus.OK) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") - public void updateAllowedPolicy(final @Valid @RequestBody UpdatePolicyRequest request) { + public void updateAllowedPolicy(@Valid @RequestBody final UpdatePolicyRequest request) { service.updatePolicies(request); } From 8e89f0d821313748fa2819bcd25a280e58d1ce5d Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:26:24 +0100 Subject: [PATCH 20/96] fix(impl): [#199] Fixes, improvements, move of business logic to service By moving business logic from PolicyStoreController to PolicyStoreService the PolicyStoreServiceTest can test all business logic while the PolicyStoreControllerTest can focus on web layer concerns such as parameter validation. Besides this, tests were structured via Nested in order to group tests for each method together. This helps not to forget about test cases. --- .../controllers/PolicyStoreController.java | 23 +- .../services/PolicyStoreService.java | 133 +++-- .../PolicyStoreControllerTest.java | 224 +++---- .../persistence/PolicyPersistenceTest.java | 263 +++++---- .../services/PolicyStoreServiceTest.java | 556 +++++++++++------- 5 files changed, 705 insertions(+), 494 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 00d3acc2ea..e5db25cb70 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -46,7 +46,7 @@ import org.eclipse.tractusx.irs.common.auth.IrsRoles; import org.eclipse.tractusx.irs.dtos.ErrorResponse; import org.eclipse.tractusx.irs.edc.client.policy.Policy; -import org.eclipse.tractusx.irs.edc.client.transformer.EdcTransformer; +import org.eclipse.tractusx.irs.policystore.models.CreatePoliciesResponse; import org.eclipse.tractusx.irs.policystore.models.CreatePolicyRequest; import org.eclipse.tractusx.irs.policystore.models.PolicyResponse; import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; @@ -64,6 +64,7 @@ import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.server.ResponseStatusException; /** * Policy Store REST controller. @@ -116,20 +117,18 @@ public class PolicyStoreController { ref = "#/components/examples/error-response-403")) }), }) - @PostMapping("/policies") @ResponseStatus(HttpStatus.CREATED) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") - public void registerAllowedPolicy(final @RequestBody CreatePolicyRequest request) { - request.policies() - .stream() - .map(payload -> { - final Policy policy = edcTransformer.transformToPolicy(payload); - policy.setValidUntil(request.validUntil()); - return policy; - }) - .forEach(policy -> service.registerPolicy(policy, - request.businessPartnerNumber() == null ? DEFAULT : request.businessPartnerNumber())); + public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final CreatePolicyRequest request) { + + final Policy registeredPolicy = service.registerPolicy(request); + + if (registeredPolicy == null) { + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, "Policy was not registered"); + } + + return CreatePoliciesResponse.fromPolicy(registeredPolicy); } @Operation(operationId = "getAllowedPoliciesByBpn", diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index d710392e1a..37b9e7cbaf 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -34,9 +34,11 @@ import java.util.LinkedList; import java.util.List; import java.util.Map; +import java.util.Optional; import java.util.TreeSet; import java.util.stream.Collectors; +import jakarta.json.JsonObject; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.edc.client.policy.AcceptedPoliciesProvider; import org.eclipse.tractusx.irs.edc.client.policy.AcceptedPolicy; @@ -47,8 +49,10 @@ import org.eclipse.tractusx.irs.edc.client.policy.Permission; import org.eclipse.tractusx.irs.edc.client.policy.Policy; import org.eclipse.tractusx.irs.edc.client.policy.PolicyType; +import org.eclipse.tractusx.irs.edc.client.transformer.EdcTransformer; import org.eclipse.tractusx.irs.policystore.config.DefaultAcceptedPoliciesConfig; import org.eclipse.tractusx.irs.policystore.exceptions.PolicyStoreException; +import org.eclipse.tractusx.irs.policystore.models.CreatePolicyRequest; import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; import org.eclipse.tractusx.irs.policystore.persistence.PolicyPersistence; import org.springframework.http.HttpStatus; @@ -60,28 +64,60 @@ */ @Service @Slf4j +@SuppressWarnings({ "PMD.ExcessiveImports", + "PMD.TooManyMethods" +}) public class PolicyStoreService implements AcceptedPoliciesProvider { public static final int DEFAULT_POLICY_LIFETIME_YEARS = 5; + private final List allowedPoliciesFromConfig; + private final PolicyPersistence persistence; + + private final EdcTransformer edcTransformer; + private final Clock clock; - private static final String MISSING_REQUEST_FIELD_MESSAGE = "Request does not contain all required fields. Missing: %s"; + + private static final String MISSING_REQUEST_FIELD_MESSAGE = + "Request does not contain all required fields. " + "Missing: %s"; + private static final String DEFAULT = "default"; public PolicyStoreService(final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig, - final PolicyPersistence persistence, final Clock clock) { + final PolicyPersistence persistence, final EdcTransformer edcTransformer, final Clock clock) { this.allowedPoliciesFromConfig = createDefaultPolicyFromConfig(defaultAcceptedPoliciesConfig); this.persistence = persistence; + this.edcTransformer = edcTransformer; this.clock = clock; } - public void registerPolicy(final Policy policy, final String businessPartnersNumber) { + /** + * Registers a policy. + * + * @param request the {@link CreatePolicyRequest} + * @return the registered policy + */ + public Policy registerPolicy(final CreatePolicyRequest request) { + + final Policy registeredPolicy; + final JsonObject policyJson = request.payload(); + + final Policy policy = edcTransformer.transformToPolicy(policyJson); + policy.setValidUntil(request.validUntil()); + + registeredPolicy = doRegisterPolicy(policy, + request.businessPartnerNumber() == null ? DEFAULT : request.businessPartnerNumber()); + + return registeredPolicy; + } + + public Policy doRegisterPolicy(final Policy policy, final String businessPartnersNumber) { validatePolicy(policy); policy.setCreatedOn(OffsetDateTime.now(clock)); log.info("Registering new policy with id {}, valid until {}", policy.getPolicyId(), policy.getValidUntil()); try { - persistence.save(businessPartnersNumber, policy); + return persistence.save(businessPartnersNumber, policy); } catch (final PolicyStoreException e) { throw new ResponseStatusException(HttpStatus.BAD_REQUEST, e.getMessage(), e); } @@ -115,17 +151,19 @@ public Map> getPolicies(final List bpnList) { if (bpnList == null) { return getAllStoredPolicies(); } else { - return bpnList.stream() - .map(bpn -> new AbstractMap.SimpleEntry<>(bpn, getStoredPolicies(List.of(bpn)))) - .collect( - Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); + return bpnList.stream().map(bpn -> { + final List storedPolicies = getStoredPolicies(List.of(bpn)); + return new AbstractMap.SimpleEntry<>(bpn, storedPolicies); + }).collect(Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); } } public List getStoredPolicies(final List bpnls) { log.info("Reading all stored polices for BPN {}", bpnls); final List storedPolicies = new LinkedList<>(); - bpnls.forEach(bpn -> storedPolicies.addAll(persistence.readAll(bpn))); + for (final String bpn : bpnls) { + storedPolicies.addAll(persistence.readAll(bpn)); + } if (storedPolicies.isEmpty()) { log.info("Policy store is empty, returning default values from config"); @@ -144,62 +182,60 @@ public Map> getAllStoredPolicies() { } public void deletePolicy(final String policyId) { - try { - log.info("Getting all policies to find correct bpn number"); - final List bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(getAllStoredPolicies(), - policyId); + log.info("Getting all policies to find correct bpn number"); + final List bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(getAllStoredPolicies(), policyId); + if (bpnsContainingPolicyId.isEmpty()) { + throw new ResponseStatusException(HttpStatus.NOT_FOUND, + "Policy with id '%s' not found".formatted(policyId)); + } + + try { log.info("Deleting policy with id {}", policyId); bpnsContainingPolicyId.forEach(bpn -> persistence.delete(bpn, policyId)); } catch (final PolicyStoreException e) { - throw new ResponseStatusException(HttpStatus.NOT_FOUND, e.getMessage(), e); + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); } } - private void deletePolicyForEachBpn(final String policyId, List bpnList) { - for (final String bpn : bpnList) { - persistence.delete(bpn, policyId); + private void deletePolicyForEachBpn(final String policyId, final List bpnList) { + try { + for (final String bpn : bpnList) { + persistence.delete(bpn, policyId); + } + } catch (final PolicyStoreException e) { + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); } } public void updatePolicies(final UpdatePolicyRequest request) { - for (final String policyId : request.policiesIds()) { + for (final String policyId : request.policyIds()) { updatePolicy(policyId, request.validUntil(), request.businessPartnerNumbers() == null ? List.of(DEFAULT) : request.businessPartnerNumbers()); } } - public void updatePolicy(final String policyId, final OffsetDateTime newValidUntil, final List newBpns) { + public void updatePolicy(final String policyId, final OffsetDateTime newValidUntil, + final List newBusinessPartnerNumbers) { log.info("Updating policy with id {}", policyId); - final List bpnsContainingPolicyId; - try { - final Map> allStoredPolicies = getAllStoredPolicies(); - bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(allStoredPolicies, policyId); - } catch (PolicyStoreException e) { - throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); - } + final List businessPartnerNumbersContainingPolicyId = findBusinessPartnerNumbersByPolicyId(policyId); - final Policy policyToUpdate; - try { - policyToUpdate = requirePolicy(policyId, bpnsContainingPolicyId); - } catch (final PolicyStoreException e) { - throw new ResponseStatusException(HttpStatus.NOT_FOUND, e.getMessage(), e); - } + final Policy policyToUpdate = findPolicy(policyId, businessPartnerNumbersContainingPolicyId).orElseThrow( + () -> new ResponseStatusException(HttpStatus.NOT_FOUND, + "Policy with id '" + policyId + "' doesn't exists!")); - try { - deletePolicyForEachBpn(policyId, bpnsContainingPolicyId); - } catch (final PolicyStoreException e) { - // this is an internal server error, because normally this should not happen - // because the check if policy exists was already carried out above - throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); - } + deletePolicyForEachBpn(policyId, businessPartnerNumbersContainingPolicyId); + updatePolicy(policyToUpdate, newValidUntil, newBusinessPartnerNumbers); + } + private void updatePolicy(final Policy policyToUpdate, final OffsetDateTime newValidUntil, + final List newBusinessPartnerNumbers) { try { policyToUpdate.update(newValidUntil); - for (final String bpn : newBpns) { + for (final String bpn : newBusinessPartnerNumbers) { persistence.save(bpn, policyToUpdate); } @@ -208,12 +244,21 @@ public void updatePolicy(final String policyId, final OffsetDateTime newValidUnt } } - private Policy requirePolicy(final String policyId, final List bpnsContainingPolicyId) { + private List findBusinessPartnerNumbersByPolicyId(final String policyId) { + final List businessPartnerNumbersContainingPolicyId; + try { + final Map> allStoredPolicies = getAllStoredPolicies(); + businessPartnerNumbersContainingPolicyId = PolicyHelper.findBpnsByPolicyId(allStoredPolicies, policyId); + } catch (PolicyStoreException e) { + throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage(), e); + } + return businessPartnerNumbersContainingPolicyId; + } + + private Optional findPolicy(final String policyId, final List bpnsContainingPolicyId) { return getStoredPolicies(bpnsContainingPolicyId).stream() .filter(PolicyHelper.havingPolicyId(policyId)) - .findAny() - .orElseThrow(() -> new PolicyStoreException( - "Policy with id '" + policyId + "' doesn't exists!")); + .findAny(); } @Override diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java index 61ca381dd5..efb004e775 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreControllerTest.java @@ -24,8 +24,7 @@ package org.eclipse.tractusx.irs.policystore.controllers; import static org.assertj.core.api.Assertions.assertThat; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; @@ -39,9 +38,7 @@ import jakarta.json.Json; import jakarta.json.JsonObject; import jakarta.json.JsonReader; -import org.eclipse.edc.core.transform.TypeTransformerRegistryImpl; -import org.eclipse.edc.jsonld.TitaniumJsonLd; -import org.eclipse.edc.spi.monitor.ConsoleMonitor; +import jakarta.servlet.http.HttpServletRequest; import org.eclipse.tractusx.irs.edc.client.policy.Constraint; import org.eclipse.tractusx.irs.edc.client.policy.Constraints; import org.eclipse.tractusx.irs.edc.client.policy.Operator; @@ -49,139 +46,160 @@ import org.eclipse.tractusx.irs.edc.client.policy.Permission; import org.eclipse.tractusx.irs.edc.client.policy.Policy; import org.eclipse.tractusx.irs.edc.client.policy.PolicyType; -import org.eclipse.tractusx.irs.edc.client.transformer.EdcTransformer; +import org.eclipse.tractusx.irs.policystore.models.CreatePoliciesResponse; import org.eclipse.tractusx.irs.policystore.models.CreatePolicyRequest; import org.eclipse.tractusx.irs.policystore.models.PolicyResponse; import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; import org.eclipse.tractusx.irs.policystore.services.PolicyStoreService; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; @ExtendWith(MockitoExtension.class) -class PolicyStoreControllerTest { +public class PolicyStoreControllerTest { - public static final String EXAMPLE_PAYLOAD = """ + public static final String REGISTER_POLICY_EXAMPLE_PAYLOAD = """ { - "validUntil": "2025-12-12T23:59:59.999Z", - "policies": { - "@context": { - "odrl": "http://www.w3.org/ns/odrl/2/" - }, - "@id": "policy-id", - "policy": { - "odrl:permission": [ - { - "odrl:action": "USE", - "odrl:constraint": { - "odrl:and": [ - { - "odrl:leftOperand": "Membership", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "active" - }, - { - "odrl:leftOperand": "PURPOSE", - "odrl:operator": { - "@id": "odrl:eq" - }, - "odrl:rightOperand": "ID 3.1 Trace" - } - ] - } - } - ] - } - } - } + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id", + "policy": { + "odrl:permission": [ + { + "odrl:action": "USE", + "odrl:constraint": { + "odrl:and": [ + { + "odrl:leftOperand": "Membership", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "active" + }, + { + "odrl:leftOperand": "PURPOSE", + "odrl:operator": { + "@id": "odrl:eq" + }, + "odrl:rightOperand": "ID 3.1 Trace" + } + ] + } + } + ] + } + } """; private PolicyStoreController testee; - private final TitaniumJsonLd titaniumJsonLd = new TitaniumJsonLd(new ConsoleMonitor()); - private final EdcTransformer edcTransformer = new EdcTransformer(new com.fasterxml.jackson.databind.ObjectMapper(), - titaniumJsonLd, new TypeTransformerRegistryImpl()); @Mock - private PolicyStoreService service; + private PolicyStoreService policyStoreServiceMock; @BeforeEach void setUp() { - testee = new PolicyStoreController(service, edcTransformer); + testee = new PolicyStoreController(policyStoreServiceMock, mock(HttpServletRequest.class)); } - @Test - void registerAllowedPolicy() { - // arrange - final OffsetDateTime now = OffsetDateTime.now(); - JsonReader jsonReader = Json.createReader(new StringReader(EXAMPLE_PAYLOAD)); - JsonObject jsonObject = jsonReader.readObject(); - jsonReader.close(); - - // act - testee.registerAllowedPolicy( - new CreatePolicyRequest(now.plusMinutes(1), null, List.of(jsonObject.get("policies").asJsonObject()))); - - // assert - verify(service).registerPolicy(any(), eq("default")); + @Nested + class RegisterPolicyTests { + + @Test + void registerAllowedPolicy() { + // arrange + final OffsetDateTime now = OffsetDateTime.now(); + final JsonObject jsonObject; + try (JsonReader jsonReader = Json.createReader(new StringReader(REGISTER_POLICY_EXAMPLE_PAYLOAD))) { + jsonObject = jsonReader.readObject(); + } + + // act + final CreatePolicyRequest request = new CreatePolicyRequest(now.plusMinutes(1), null, + jsonObject.get("policy").asJsonObject()); + when(policyStoreServiceMock.registerPolicy(request)).thenReturn(Policy.builder().policyId("dummy").build()); + final CreatePoliciesResponse createPoliciesResponse = testee.registerAllowedPolicy(request); + + // assert + verify(policyStoreServiceMock).registerPolicy(request); + assertThat(createPoliciesResponse.policyId()).isEqualTo("dummy"); + } } - @Test - void getPolicies() { - // arrange - final List policies = List.of( - new Policy("testId", OffsetDateTime.now(), OffsetDateTime.now(), createPermissions())); - final String bpn = "bpn1"; - when(service.getPolicies(List.of(bpn))).thenReturn(Map.of(bpn, policies)); - - // act - final Map> returnedPolicies = testee.getPolicies(List.of(bpn)); - - // assert - assertThat(returnedPolicies.get(bpn)).isEqualTo( - policies.stream().map(PolicyResponse::fromPolicy).collect(Collectors.toList())); + @Nested + class GetPolicyTests { + + @Test + void getPolicies() { + // arrange + final List policies = List.of( + new Policy("testId", OffsetDateTime.now(), OffsetDateTime.now(), createPermissions())); + final String bpn = "bpn1"; + when(policyStoreServiceMock.getPolicies(List.of(bpn))).thenReturn(Map.of(bpn, policies)); + + // act + final Map> returnedPolicies = testee.getPolicies(List.of(bpn)); + + // assert + assertThat(returnedPolicies.get(bpn)).isEqualTo( + policies.stream().map(PolicyResponse::fromPolicy).collect(Collectors.toList())); + } + + @Test + void getAllPolicies() { + // arrange + final List policies = List.of( + new Policy("testId", OffsetDateTime.now(), OffsetDateTime.now(), createPermissions())); + final String bpn = "bpn1"; + when(policyStoreServiceMock.getPolicies(null)).thenReturn(Map.of(bpn, policies)); + + // act + final Map> returnedPolicies = testee.getPolicies(null); + + // assert + assertThat(returnedPolicies).containsEntry(bpn, + policies.stream().map(PolicyResponse::fromPolicy).collect(Collectors.toList())); + } } - @Test - void getAllPolicies() { - // arrange - final List policies = List.of( - new Policy("testId", OffsetDateTime.now(), OffsetDateTime.now(), createPermissions())); - final String bpn = "bpn1"; - when(service.getPolicies(null)).thenReturn(Map.of(bpn, policies)); + @Nested + class DeletePolicyTests { - // act - final Map> returnedPolicies = testee.getPolicies(null); + @Test + void deleteAllowedPolicy() { + // act + testee.deleteAllowedPolicy("testId"); - // assert - assertThat(returnedPolicies).containsEntry(bpn, - policies.stream().map(PolicyResponse::fromPolicy).collect(Collectors.toList())); + // assert + verify(policyStoreServiceMock).deletePolicy("testId"); + } } - @Test - void deleteAllowedPolicy() { - // act - testee.deleteAllowedPolicy("testId"); + @Nested + class UpdatePolicyTests { - // assert - verify(service).deletePolicy("testId"); - } + @Test + void updateAllowedPolicy() { + // arrange + final String policyId = "policyId"; + final UpdatePolicyRequest request = new UpdatePolicyRequest(OffsetDateTime.now(), List.of("bpn"), + List.of(policyId)); + + // act + testee.updateAllowedPolicy(request); - @Test - void updateAllowedPolicy() { - // arrange - final String policyId = "policyId"; - final UpdatePolicyRequest request = new UpdatePolicyRequest(OffsetDateTime.now(), List.of("bpn"), - List.of(policyId)); + // assert + verify(policyStoreServiceMock).updatePolicies(request); + } - // act - testee.updateAllowedPolicy(request); + /* + There are no null and empty tests for the list of business partner numbers and the list of policy IDs + because this is done via jakarta validation. + */ - // assert - verify(service).updatePolicies(request); } private List createPermissions() { diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java index 4bbf0e6eee..ee193a9ea2 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/persistence/PolicyPersistenceTest.java @@ -35,6 +35,7 @@ import static org.mockito.Mockito.when; import java.time.OffsetDateTime; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; @@ -47,6 +48,7 @@ import org.eclipse.tractusx.irs.edc.client.policy.Policy; import org.eclipse.tractusx.irs.policystore.exceptions.PolicyStoreException; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; @@ -68,129 +70,150 @@ void setUp() { testee = new PolicyPersistence(mockPersistence, mapper); } - @Test - void save() throws BlobPersistenceException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - - // act - testee.save("testBpn", policy); - - // assert - verify(mockPersistence).putBlob(anyString(), any()); - } - - @Test - void saveWithoutBpn() throws BlobPersistenceException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - - // act - testee.save("default", policy); - - // assert - verify(mockPersistence).putBlob(anyString(), any()); - } - - @Test - void saveDuplicate() throws BlobPersistenceException, JsonProcessingException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - final var policies = List.of(policy); - when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); - - // act & assert - assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); - } - - @Test - void saveWithError() throws BlobPersistenceException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - when(mockPersistence.getBlob(any())).thenThrow( - new BlobPersistenceException("test", new IllegalStateException())); - - // act & assert - assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); - } - - @Test - void saveWithWriteError() throws BlobPersistenceException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - doThrow(new BlobPersistenceException("test", new IllegalStateException())).when(mockPersistence) - .putBlob(any(), any()); - - // act & assert - assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); + @Nested + class SavePolicyTests { + @Test + void save() throws BlobPersistenceException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + + // ACT + testee.save("testBpn", policy); + + // ASSERT + verify(mockPersistence).putBlob(anyString(), any()); + } + + @Test + void saveWithoutBpn() throws BlobPersistenceException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + + // ACT + testee.save("default", policy); + + // ASSERT + verify(mockPersistence).putBlob(anyString(), any()); + } + + @Test + void saveDuplicate() throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + final var policies = List.of(policy); + when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); + + // ACT & ASSERT + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); + } + + @Test + void saveWithError() throws BlobPersistenceException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + when(mockPersistence.getBlob(any())).thenThrow( + new BlobPersistenceException("test", new IllegalStateException())); + + // ACT & ASSERT + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); + } + + @Test + void saveWithWriteError() throws BlobPersistenceException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + doThrow(new BlobPersistenceException("test", new IllegalStateException())).when(mockPersistence) + .putBlob(any(), any()); + + // ACT & ASSERT + assertThatThrownBy(() -> testee.save("testBpn", policy)).isInstanceOf(PolicyStoreException.class); + } } - @Test - void delete() throws BlobPersistenceException, JsonProcessingException { - // arrange - final String policyId = "test"; - final var policy = new Policy(policyId, OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - final var policies = List.of(policy); - when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); - - // act - testee.delete("testBpn", policyId); - - // assert - verify(mockPersistence).putBlob(anyString(), any()); - } - - @Test - void deleteShouldThrowExceptionIfPolicyWithIdDoesntExists() - throws BlobPersistenceException, JsonProcessingException { - // arrange - final var policy = new Policy("policyId", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(List.of(policy)))); - - // act - assertThrows(PolicyStoreException.class, () -> testee.delete("testBpn", "notExistingPolicyId")); + @Nested + class DeletePolicyTests { + @Test + void delete_success() throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final String policyId = "test"; + final var policy = new Policy(policyId, OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + final var policies = List.of(policy); + when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); + + // ACT + testee.delete("testBpn", policyId); + + // ASSERT + verify(mockPersistence).putBlob(anyString(), any()); + } + + @Test + void delete_shouldThrowExceptionIfPolicyWithIdDoesntExists() + throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final var policy = new Policy("policyId", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + when(mockPersistence.getBlob(anyString())).thenReturn( + Optional.of(mapper.writeValueAsBytes(List.of(policy)))); + + // ACT + assertThrows(PolicyStoreException.class, () -> testee.delete("testBpn", "notExistingPolicyId")); + } } - @Test - void readAll() throws BlobPersistenceException, JsonProcessingException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - final var policies = List.of(policy); - when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); - - // act - final var readPolicies = testee.readAll("testBpn"); - - // assert - assertThat(readPolicies).hasSize(1); - } - - @Test - void whenReadAllShouldReturnCorrect() throws BlobPersistenceException, JsonProcessingException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - final var policies = List.of(policy); - when(mockPersistence.getAllBlobs()).thenReturn(Map.of("bpn1", mapper.writeValueAsBytes(policies))); - - // act - final var readPolicies = testee.readAll(); - - // assert - assertThat(readPolicies).hasSize(1); - } - - @Test - void readAllWithError() throws BlobPersistenceException, JsonProcessingException { - // arrange - final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); - final var policies = List.of(policy); - final var mapperMock = mock(ObjectMapper.class); - when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); - when(mapperMock.readerForListOf(Policy.class)).thenThrow(new IllegalStateException()); - - final var localTestee = new PolicyPersistence(mockPersistence, mapperMock); - - // act & assert - assertThatThrownBy(() -> localTestee.readAll("testBpn")).isInstanceOf(PolicyStoreException.class); + @Nested + class ReadPoliciesTests { + + @Test + void readAll_withBpn() throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + final var policies = List.of(policy); + when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); + + // ACT + final var readPolicies = testee.readAll("testBpn"); + + // ASSERT + assertThat(readPolicies).hasSize(1); + } + + @Test + void readAll_shouldReturnCorrect() throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final var policy = Policy.builder() + .policyId("test") + .createdOn(OffsetDateTime.now()) + .validUntil(OffsetDateTime.now()) + .permissions(emptyList()) + .build(); + final Map blobMap = new HashMap<>(); + blobMap.put("bpn1", mapper.writeValueAsBytes(List.of(policy))); + blobMap.put("bpn2", mapper.writeValueAsBytes(emptyList())); + when(mockPersistence.getAllBlobs()).thenReturn(blobMap); + + // ACT + final var readPolicies = testee.readAll(); + + // ASSERT + assertThat(readPolicies).hasSize(2); + assertThat(readPolicies.keySet()).containsExactlyInAnyOrder("bpn1", "bpn2"); + assertThat(readPolicies.get("bpn1")).isNotEmpty(); + assertThat(readPolicies.get("bpn2")).isEmpty(); + } + + @Test + void readAll_withBpn_withError() throws BlobPersistenceException, JsonProcessingException { + // ARRANGE + final var policy = new Policy("test", OffsetDateTime.now(), OffsetDateTime.now(), emptyList()); + final var policies = List.of(policy); + final var mapperMock = mock(ObjectMapper.class); + when(mockPersistence.getBlob(anyString())).thenReturn(Optional.of(mapper.writeValueAsBytes(policies))); + when(mapperMock.readerForListOf(Policy.class)).thenThrow(new IllegalStateException()); + + final var localTestee = new PolicyPersistence(mockPersistence, mapperMock); + + // ACT & ASSERT + assertThatThrownBy(() -> localTestee.readAll("testBpn")).isInstanceOf(PolicyStoreException.class); + } } } \ No newline at end of file diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java index 25d26fc553..b6eb45aee0 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java @@ -27,7 +27,6 @@ import static java.util.Collections.emptyMap; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.junit.jupiter.api.Assertions.assertThrows; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.doThrow; @@ -35,12 +34,21 @@ import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import java.io.StringReader; import java.time.Clock; import java.time.OffsetDateTime; import java.util.Collections; import java.util.List; import java.util.Map; +import jakarta.json.Json; +import jakarta.json.JsonObject; +import jakarta.json.JsonReader; +import org.assertj.core.api.AbstractThrowableAssert; +import org.assertj.core.api.ThrowableAssert; +import org.eclipse.edc.core.transform.TypeTransformerRegistryImpl; +import org.eclipse.edc.jsonld.TitaniumJsonLd; +import org.eclipse.edc.spi.monitor.ConsoleMonitor; import org.eclipse.tractusx.irs.edc.client.policy.Constraint; import org.eclipse.tractusx.irs.edc.client.policy.Constraints; import org.eclipse.tractusx.irs.edc.client.policy.Operator; @@ -48,17 +56,22 @@ import org.eclipse.tractusx.irs.edc.client.policy.Permission; import org.eclipse.tractusx.irs.edc.client.policy.Policy; import org.eclipse.tractusx.irs.edc.client.policy.PolicyType; +import org.eclipse.tractusx.irs.edc.client.transformer.EdcTransformer; import org.eclipse.tractusx.irs.policystore.config.DefaultAcceptedPoliciesConfig; +import org.eclipse.tractusx.irs.policystore.controllers.PolicyStoreControllerTest; import org.eclipse.tractusx.irs.policystore.exceptions.PolicyStoreException; +import org.eclipse.tractusx.irs.policystore.models.CreatePolicyRequest; import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; import org.eclipse.tractusx.irs.policystore.persistence.PolicyPersistence; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.ArgumentCaptor; import org.mockito.Captor; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; +import org.springframework.http.HttpStatus; import org.springframework.web.server.ResponseStatusException; @ExtendWith(MockitoExtension.class) @@ -67,98 +80,224 @@ class PolicyStoreServiceTest { private static final String BPN = "testBpn"; private static final String EXAMPLE_ALLOWED_NAME = "ID 3.0 Trace"; private static final String EXAMPLE_ACCEPTED_LEFT_OPERAND = "PURPOSE"; + private static final String REGISTER_POLICY_EXAMPLE_PAYLOAD = PolicyStoreControllerTest.REGISTER_POLICY_EXAMPLE_PAYLOAD; + private final Clock clock = Clock.systemUTC(); + + private final TitaniumJsonLd titaniumJsonLd = new TitaniumJsonLd(new ConsoleMonitor()); + private final EdcTransformer edcTransformer = new EdcTransformer(new com.fasterxml.jackson.databind.ObjectMapper(), + titaniumJsonLd, new TypeTransformerRegistryImpl()); + @Captor - ArgumentCaptor policyCaptor; + private ArgumentCaptor policyCaptor; + @Captor + private ArgumentCaptor bpnCaptor; + private PolicyStoreService testee; + @Mock - private PolicyPersistence persistence; + private PolicyPersistence persistenceMock; @BeforeEach void setUp() { final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig = new DefaultAcceptedPoliciesConfig(); defaultAcceptedPoliciesConfig.setAcceptedPolicies(List.of()); - testee = new PolicyStoreService(defaultAcceptedPoliciesConfig, persistence, clock); + testee = new PolicyStoreService(defaultAcceptedPoliciesConfig, persistenceMock, edcTransformer, clock); } - @Test - void registerPolicy() { - // arrange - final OffsetDateTime now = OffsetDateTime.now(clock); - final Policy policy = new Policy("testId", now, now.plusMinutes(1), emptyList()); + @Nested + class RegisterPolicyTests { + + @Test + void registerPolicy_withBpnNull_shouldStoreAsDefault() { + + // ARRANGE + final OffsetDateTime now = OffsetDateTime.now(); + final JsonObject jsonObject; + try (JsonReader jsonReader = Json.createReader(new StringReader(REGISTER_POLICY_EXAMPLE_PAYLOAD))) { + jsonObject = jsonReader.readObject(); + } + + // ACT + testee.registerPolicy(new CreatePolicyRequest(now, null, jsonObject)); + + // ASSERT + verify(persistenceMock).save(eq("default"), policyCaptor.capture()); + assertThat(policyCaptor.getValue().getPolicyId()).isEqualTo("policy-id"); + assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(now); + assertThat(policyCaptor.getValue().getPermissions()).hasSize(1); + } + + @Test + void registerPolicy() { + + // ARRANGE + final OffsetDateTime now = OffsetDateTime.now(); + final JsonObject jsonObject; + try (JsonReader jsonReader = Json.createReader(new StringReader(REGISTER_POLICY_EXAMPLE_PAYLOAD))) { + jsonObject = jsonReader.readObject(); + } + + // ACT + final OffsetDateTime validUntil = now.plusMonths(1); + final CreatePolicyRequest request = new CreatePolicyRequest(validUntil, "BPNL00000123ABCD", jsonObject); + testee.registerPolicy(request); + // it does not make sense to check the return value from the method, + // because it comes from persistence, which is mocked in this test + + // ASSERT + verify(persistenceMock).save(eq("BPNL00000123ABCD"), policyCaptor.capture()); + assertThat(policyCaptor.getValue().getPolicyId()).isEqualTo("policy-id"); + assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(validUntil); + assertThat(policyCaptor.getValue().getPermissions()).isNotEmpty(); + + } + } - // act - testee.registerPolicy(policy, BPN); + @Nested + class DoRegisterPolicyTests { - // assert - verify(persistence).save(eq(BPN), any()); - } + @Test + void doRegisterPolicy_permissionEmpty() { - @Test - void registerPolicyWithPermission() { - // arrange - final OffsetDateTime now = OffsetDateTime.now(clock); - final Policy policy = new Policy("testId", now, now.plusMinutes(1), createPermissions()); + // ARRANGE + final OffsetDateTime now = OffsetDateTime.now(clock); + final Policy policy = new Policy("testId", now, now.plusMinutes(1), emptyList()); - // act - testee.registerPolicy(policy, BPN); + // ACT + testee.doRegisterPolicy(policy, BPN); - // assert - verify(persistence).save(eq(BPN), policyCaptor.capture()); + // ASSERT + verify(persistenceMock).save(eq(BPN), any()); + } - assertThat(policyCaptor.getValue()).isNotNull(); - List permissionList = policyCaptor.getValue().getPermissions(); - assertThat(permissionList).hasSize(2); - assertThat(permissionList.get(0)).usingRecursiveComparison().isEqualTo(createPermissions().get(0)); - assertThat(permissionList.get(1)).usingRecursiveComparison().isEqualTo(createPermissions().get(1)); - } + @Test + void doRegisterPolicy_permissionsNull() { - @Test - void registerPolicyShouldThrowResponseStatusException() { - // act - final String policyId = "testId"; - final OffsetDateTime now = OffsetDateTime.now(clock); - final Policy policy = new Policy(policyId, now, now.plusMinutes(1), createPermissions()); - doThrow(new PolicyStoreException("")).when(persistence).save(any(), any()); + // ARRANGE + final OffsetDateTime now = OffsetDateTime.now(clock); + final Policy policy = new Policy("testId", now, now.plusMinutes(1), null); - // assert - assertThatThrownBy(() -> testee.registerPolicy(policy, BPN)).isInstanceOf(ResponseStatusException.class); - } + // ACT + final ThrowableAssert.ThrowingCallable call = () -> testee.doRegisterPolicy(policy, "A"); + + // ASSERT + final AbstractThrowableAssert throwableAssert = assertThatThrownBy(call); + throwableAssert.isInstanceOf(ResponseStatusException.class) + .hasMessageContaining("Missing: odrl:permission") + .extracting(e -> (ResponseStatusException) e) + .satisfies(e -> assertThat(e.getStatusCode()).isEqualTo(HttpStatus.BAD_REQUEST)); + } + + @Test + void doRegisterPolicy_withFilledPermissionList() { - @Test - void getStoredPolicies() { - // arrange - final List policies = List.of(createPolicy("test1"), createPolicy("test2"), createPolicy("test3")); - when(persistence.readAll(BPN)).thenReturn(policies); + // ARRANGE + final OffsetDateTime now = OffsetDateTime.now(clock); + final Policy policy = new Policy("testId", now, now.plusMinutes(1), createPermissions()); - // act - final var storedPolicies = testee.getStoredPolicies(List.of(BPN)); + // ACT + testee.doRegisterPolicy(policy, BPN); + + // ASSERT + verify(persistenceMock).save(eq(BPN), policyCaptor.capture()); + + assertThat(policyCaptor.getValue()).isNotNull(); + List permissionList = policyCaptor.getValue().getPermissions(); + assertThat(permissionList).hasSize(2); + assertThat(permissionList.get(0)).usingRecursiveComparison().isEqualTo(createPermissions().get(0)); + assertThat(permissionList.get(1)).usingRecursiveComparison().isEqualTo(createPermissions().get(1)); + } + + @Test + void doRegisterPolicy_whenPolicyStoreExceptionOccurs() { + + // ACT + final String policyId = "testId"; + final OffsetDateTime now = OffsetDateTime.now(clock); + final Policy policy = new Policy(policyId, now, now.plusMinutes(1), createPermissions()); + doThrow(new PolicyStoreException("")).when(persistenceMock).save(any(), any()); + + // ASSERT + assertThatThrownBy(() -> testee.doRegisterPolicy(policy, BPN)).isInstanceOf(ResponseStatusException.class); + } + + @Test + void doRegisterPolicy_withMissingConstraintShouldThrowException() { + + // ARRANGE + final Policy policy = Policy.builder() + .permissions(List.of(Permission.builder() + .constraint(new Constraints(emptyList(), + emptyList())) + .build(), Permission.builder().build())) + .build(); + + // ACT & ASSERT + assertThatThrownBy(() -> testee.doRegisterPolicy(policy, null)).isInstanceOf(ResponseStatusException.class) + .hasMessageContaining("400 BAD_REQUEST") + .hasMessageContaining( + "Missing: odrl:constraint"); + } - // assert - assertThat(storedPolicies).hasSize(3); } - @Test - void getDefaultStoredPoliciesWhenEmpty() { - // arrange - final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy1 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( - EXAMPLE_ACCEPTED_LEFT_OPERAND, "eq", EXAMPLE_ALLOWED_NAME); - final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy2 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( - EXAMPLE_ACCEPTED_LEFT_OPERAND, "eq", EXAMPLE_ALLOWED_NAME); - final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig = new DefaultAcceptedPoliciesConfig(); - defaultAcceptedPoliciesConfig.setAcceptedPolicies(List.of(acceptedPolicy1, acceptedPolicy2)); - testee = new PolicyStoreService(defaultAcceptedPoliciesConfig, persistence, clock); - - // act - final var defaultPolicies = testee.getStoredPolicies(List.of(BPN)); - - // assert - assertThat(defaultPolicies).hasSize(1); - final List permissionList = defaultPolicies.get(0).getPermissions(); - assertThat(permissionList).hasSize(1); - final Constraints constraints = permissionList.get(0).getConstraint(); - assertThat(constraints.getOr()).hasSize(2); - assertThat(constraints.getAnd()).hasSize(2); + @Nested + class GetPoliciesTests { + + @Test + void getStoredPolicies() { + + // ARRANGE + final List policies = List.of(createPolicy("test1"), createPolicy("test2"), createPolicy("test3")); + when(persistenceMock.readAll(BPN)).thenReturn(policies); + + // ACT + final var storedPolicies = testee.getStoredPolicies(List.of(BPN)); + + // ASSERT + assertThat(storedPolicies).hasSize(3); + } + + @Test + void getDefaultStoredPoliciesWhenEmpty() { + + // ARRANGE + final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy1 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( + EXAMPLE_ACCEPTED_LEFT_OPERAND, "eq", EXAMPLE_ALLOWED_NAME); + final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy2 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( + EXAMPLE_ACCEPTED_LEFT_OPERAND, "eq", EXAMPLE_ALLOWED_NAME); + final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig = new DefaultAcceptedPoliciesConfig(); + defaultAcceptedPoliciesConfig.setAcceptedPolicies(List.of(acceptedPolicy1, acceptedPolicy2)); + testee = new PolicyStoreService(defaultAcceptedPoliciesConfig, persistenceMock, edcTransformer, clock); + + // ACT + final var defaultPolicies = testee.getStoredPolicies(List.of(BPN)); + + // ASSERT + assertThat(defaultPolicies).hasSize(1); + + final List permissionList = defaultPolicies.get(0).getPermissions(); + assertThat(permissionList).hasSize(1); + + final Constraints constraints = permissionList.get(0).getConstraint(); + assertThat(constraints.getOr()).hasSize(2); + assertThat(constraints.getAnd()).hasSize(2); + } + + @Test + void shouldReturnDefaultPolicyWhenBpnIsEmpty() { + + // ARRANGE + when(persistenceMock.readAll()).thenReturn(emptyMap()); + + // ACT + final var acceptedPolicies = testee.getAcceptedPolicies(null); + + // ASSERT + assertThat(acceptedPolicies.get(0).policy().getPolicyId()).isEqualTo("default-policy"); + } + } private Policy createPolicy(final String policyId) { @@ -177,198 +316,185 @@ private Constraints createConstraints() { new Constraint(EXAMPLE_ACCEPTED_LEFT_OPERAND, new Operator(OperatorType.EQ), "ID 3.1 Trace"))); } - @Test - void deletePolicy() { - // arrange - when(persistence.readAll()).thenReturn(Map.of(BPN, List.of(new Policy("testId", null, null, null)))); + @Nested + class DeletePolicyTests { - // act - testee.deletePolicy("testId"); + @Test + void deletePolicy_success() { + // ARRANGE + when(persistenceMock.readAll()).thenReturn(Map.of(BPN, List.of(new Policy("testId", null, null, null)))); - // assert - verify(persistence).delete(BPN, "testId"); - } + // ACT + testee.deletePolicy("testId"); - @Test - void deletePolicyShouldThrowResponseStatusException() { - // act - final String policyId = "testId"; - when(persistence.readAll()).thenReturn(Map.of(BPN, List.of(new Policy("testId", null, null, null)))); - doThrow(new PolicyStoreException("")).when(persistence).delete(BPN, policyId); + // ASSERT + verify(persistenceMock).delete(BPN, "testId"); + } - // assert - assertThrows(ResponseStatusException.class, () -> testee.deletePolicy(policyId)); - } + @Test + void deletePolicy_internalServerError() { - @Test - void whenRegisterPolicyWithMissingPermissionsShouldThrowException() { - // arrange - final Policy policy = new Policy(); + // ACT + final String policyId = "testId"; + when(persistenceMock.readAll()).thenReturn(Map.of(BPN, List.of(new Policy(policyId, null, null, null)))); + doThrow(new PolicyStoreException("")).when(persistenceMock).delete(BPN, policyId); - // act - // assert - assertThrows(ResponseStatusException.class, () -> testee.registerPolicy(policy, null)); - } + // ASSERT + assertThatThrownBy(() -> testee.deletePolicy(policyId)).isInstanceOf(ResponseStatusException.class) + .hasMessageContaining("500 INTERNAL_SERVER_ERROR"); + } - @Test - void whenRegisterPolicyWithMissingConstraintShouldThrowException() { - // arrange - final Policy policy = Policy.builder() - .permissions(List.of(Permission.builder() - .constraint( - new Constraints(emptyList(), emptyList())) - .build(), Permission.builder().build())) - .build(); - - // act - // assert - assertThrows(ResponseStatusException.class, () -> testee.registerPolicy(policy, null)); - } + @Test + void deletePolicy_policyNotFound() { - @Test - void updatePolicyWithBpnAndValidUntilChanged() { - // arrange - final String policyId = "testId"; + // ACT + final String policyId = "notExistingPolicyId"; + when(persistenceMock.readAll()).thenReturn(Map.of(BPN, List.of(new Policy("testId", null, null, null)))); - final String originalBpn = "bpn2"; - final String expectedBpn = "bpn1"; + // ASSERT + assertThatThrownBy(() -> testee.deletePolicy(policyId)).isInstanceOf(ResponseStatusException.class) + .hasMessageContaining("404 NOT_FOUND") + .hasMessageContaining(policyId); + } - final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); - final OffsetDateTime originalValidUntil = createdOn.plusMinutes(1); - final OffsetDateTime expectedValidUntil = createdOn.plusDays(3); + } - final List permissions = emptyList(); + @Nested + class UpdatePolicyTests { - final Policy testPolicy = new Policy(policyId, createdOn, originalValidUntil, permissions); - when(persistence.readAll()).thenReturn(Map.of(originalBpn, List.of(testPolicy))); - // get policies for bpn - when(persistence.readAll(originalBpn)).thenReturn(List.of(testPolicy)); + @Test + void updatePolicy_withBpnAndValidUntilChanged() { + // ARRANGE + final String policyId = "testId"; - // act - testee.updatePolicies(new UpdatePolicyRequest(expectedValidUntil, List.of(expectedBpn), List.of(policyId))); + final String originalBpn = "bpn2"; + final String expectedBpn = "bpn1"; - // assert - verify(persistence).delete(originalBpn, policyId); + final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); + final OffsetDateTime originalValidUntil = createdOn.plusMinutes(1); + final OffsetDateTime expectedValidUntil = createdOn.plusDays(3); - final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence).save(eq(expectedBpn), policyCaptor.capture()); - assertThat(policyCaptor.getValue().getCreatedOn()).isEqualTo(createdOn); - assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(expectedValidUntil); + final List permissions = emptyList(); - } + final Policy testPolicy = new Policy(policyId, createdOn, originalValidUntil, permissions); + when(persistenceMock.readAll()).thenReturn(Map.of(originalBpn, List.of(testPolicy))); + // get policies for bpn + when(persistenceMock.readAll(originalBpn)).thenReturn(List.of(testPolicy)); - @SuppressWarnings("unchecked") - @Test - void updatePolicies_shouldAddPolicyToEachBpn() { + // ACT + testee.updatePolicies(new UpdatePolicyRequest(expectedValidUntil, List.of(expectedBpn), List.of(policyId))); - // ARRANGE - final String policyId = "testId"; + // ASSERT + verify(persistenceMock).delete(originalBpn, policyId); - final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); - final OffsetDateTime validUntil = createdOn.plusDays(14); + verify(persistenceMock).save(eq(expectedBpn), policyCaptor.capture()); + assertThat(policyCaptor.getValue().getCreatedOn()).isEqualTo(createdOn); + assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(expectedValidUntil); + } - final List permissions = emptyList(); + @SuppressWarnings("unchecked") + @Test + void updatePolicies_shouldAddPolicyToEachBpn() { - // BPN1 without any policies + // ARRANGE + final String policyId = "testId"; - // BPN2 with testPolicy - final Policy testPolicy = new Policy(policyId, createdOn, validUntil, permissions); - when(persistence.readAll()).thenReturn(Map.of("bpn2", List.of(testPolicy))); - when(persistence.readAll("bpn2")).thenReturn(List.of(testPolicy)); + final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); + final OffsetDateTime validUntil = createdOn.plusDays(14); - // ACT - testee.updatePolicies(new UpdatePolicyRequest(validUntil, List.of("bpn1", "bpn2"), List.of(policyId))); + final List permissions = emptyList(); - // ASSERT - verify(persistence).delete("bpn2", policyId); + // BPN1 without any policies - final var bpnCaptor = ArgumentCaptor.forClass(String.class); - final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence, times(2)).save(bpnCaptor.capture(), policyCaptor.capture()); + // BPN2 with testPolicy + final Policy testPolicy = new Policy(policyId, createdOn, validUntil, permissions); + when(persistenceMock.readAll()).thenReturn(Map.of("bpn2", List.of(testPolicy))); + when(persistenceMock.readAll("bpn2")).thenReturn(List.of(testPolicy)); - // policy added to each BPN - assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId); - assertThat(bpnCaptor.getAllValues().get(0)).isEqualTo("bpn1"); - assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId); - assertThat(bpnCaptor.getAllValues().get(1)).isEqualTo("bpn2"); + // ACT + testee.updatePolicies(new UpdatePolicyRequest(validUntil, List.of("bpn1", "bpn2"), List.of(policyId))); - } + // ASSERT + verify(persistenceMock).delete("bpn2", policyId); - @SuppressWarnings("unchecked") - @Test - void updatePolicies_shouldAssociateEachPolicyGivenPolicyWithEachGivenBpn() { + verify(persistenceMock, times(2)).save(bpnCaptor.capture(), policyCaptor.capture()); - // ARRANGE - final String policyId1 = "testId1"; - final String policyId2 = "testId2"; + // policy added to each BPN + assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId); + assertThat(bpnCaptor.getAllValues().get(0)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId); + assertThat(bpnCaptor.getAllValues().get(1)).isEqualTo("bpn2"); + } - final String bpn1 = "bpn1"; - final String bpn2 = "bpn2"; + @SuppressWarnings("unchecked") + @Test + void updatePolicies_shouldAssociateEachGivenPolicyWithEachGivenBpn() { - final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); - final OffsetDateTime originalValidUntil = createdOn.plusMinutes(1); + // ARRANGE + final String policyId1 = "testId1"; + final String policyId2 = "testId2"; - final List permissions = emptyList(); + final String bpn1 = "bpn1"; + final String bpn2 = "bpn2"; - final Policy testPolicy1 = new Policy(policyId1, createdOn, originalValidUntil, permissions); - final Policy testPolicy2 = new Policy(policyId2, createdOn, originalValidUntil, permissions); + final OffsetDateTime createdOn = OffsetDateTime.now(clock).minusDays(10); + final OffsetDateTime originalValidUntil = createdOn.plusMinutes(1); - // BPN1 without any policies + final List permissions = emptyList(); - // BPN2 with testPolicy1 and testPolicy2 - when(persistence.readAll()).thenReturn(Map.of(bpn2, List.of(testPolicy1, testPolicy2))); - when(persistence.readAll(bpn2)).thenReturn( - List.of(new Policy(policyId1, createdOn, originalValidUntil, permissions), - new Policy(policyId2, createdOn, originalValidUntil, permissions))); + final Policy testPolicy1 = new Policy(policyId1, createdOn, originalValidUntil, permissions); + final Policy testPolicy2 = new Policy(policyId2, createdOn, originalValidUntil, permissions); - // ACT - testee.updatePolicies( - new UpdatePolicyRequest(originalValidUntil, List.of(bpn1, bpn2), List.of(policyId1, policyId2))); + // BPN1 without any policies - // ASSERT - verify(persistence).delete(bpn2, policyId1); - verify(persistence).delete(bpn2, policyId2); + // BPN2 with testPolicy1 and testPolicy2 + when(persistenceMock.readAll()).thenReturn(Map.of(bpn2, List.of(testPolicy1, testPolicy2))); + when(persistenceMock.readAll(bpn2)).thenReturn( + List.of(new Policy(policyId1, createdOn, originalValidUntil, permissions), + new Policy(policyId2, createdOn, originalValidUntil, permissions))); - final var bpnsCaptor = ArgumentCaptor.forClass(String.class); - final var policyCaptor = ArgumentCaptor.forClass(Policy.class); - verify(persistence, times(4)).save(bpnsCaptor.capture(), policyCaptor.capture()); + // ACT + testee.updatePolicies( + new UpdatePolicyRequest(originalValidUntil, List.of(bpn1, bpn2), List.of(policyId1, policyId2))); - // each BPNs added to policy 1 - assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId1); - assertThat(bpnsCaptor.getAllValues().get(0)).isEqualTo("bpn1"); - assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId1); - assertThat(bpnsCaptor.getAllValues().get(1)).isEqualTo("bpn2"); + // ASSERT + verify(persistenceMock).delete(bpn2, policyId1); + verify(persistenceMock).delete(bpn2, policyId2); - // each BPNs added to policy 2 - assertThat(policyCaptor.getAllValues().get(2).getPolicyId()).isEqualTo(policyId2); - assertThat(bpnsCaptor.getAllValues().get(2)).isEqualTo("bpn1"); - assertThat(policyCaptor.getAllValues().get(3).getPolicyId()).isEqualTo(policyId2); - assertThat(bpnsCaptor.getAllValues().get(3)).isEqualTo("bpn2"); + verify(persistenceMock, times(4)).save(bpnCaptor.capture(), policyCaptor.capture()); - } + // each BPNs added to policy 1 + assertThat(policyCaptor.getAllValues().get(0).getPolicyId()).isEqualTo(policyId1); + assertThat(bpnCaptor.getAllValues().get(0)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(1).getPolicyId()).isEqualTo(policyId1); + assertThat(bpnCaptor.getAllValues().get(1)).isEqualTo("bpn2"); - @Test - void shouldReturnDefaultPolicyWhenBpnIsEmpty() { - // arrange - when(persistence.readAll()).thenReturn(emptyMap()); + // each BPNs added to policy 2 + assertThat(policyCaptor.getAllValues().get(2).getPolicyId()).isEqualTo(policyId2); + assertThat(bpnCaptor.getAllValues().get(2)).isEqualTo("bpn1"); + assertThat(policyCaptor.getAllValues().get(3).getPolicyId()).isEqualTo(policyId2); + assertThat(bpnCaptor.getAllValues().get(3)).isEqualTo("bpn2"); + } - // act - final var acceptedPolicies = testee.getAcceptedPolicies(null); + @Test + void updatePolicy_shouldThrowResponseStatusException() { - // assert - assertThat(acceptedPolicies.get(0).policy().getPolicyId()).isEqualTo("default-policy"); - } + // ARRANGE + final String policyId = "testId"; + final OffsetDateTime validUntil = OffsetDateTime.now(); + doThrow(new PolicyStoreException("")).when(persistenceMock).readAll(); + + // ACT + final List bpn = List.of("bpn"); + final ThrowableAssert.ThrowingCallable call = () -> testee.updatePolicy(policyId, validUntil, bpn); - @Test - void updatePolicyShouldThrowResponseStatusException() { - // act - final String policyId = "testId"; - final OffsetDateTime validUntil = OffsetDateTime.now(); - doThrow(new PolicyStoreException("")).when(persistence).readAll(); + // ASSERT + assertThatThrownBy(call).isInstanceOf(ResponseStatusException.class) // + .extracting(e -> (ResponseStatusException) e) + .satisfies(e -> assertThat(e.getStatusCode()).isEqualTo( + HttpStatus.INTERNAL_SERVER_ERROR)); + } - // assert - final List bpn = List.of("bpn"); - assertThrows(ResponseStatusException.class, () -> testee.updatePolicy(policyId, validUntil, bpn)); } } \ No newline at end of file From 2be0088e458543a3bf92bb1df0095c812a7bf5fb Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:29:57 +0100 Subject: [PATCH 21/96] fix(impl): [#199] Rename request parameter for GET policies --- docs/src/api/irs-api.yaml | 2 +- .../irs/policystore/controllers/PolicyStoreController.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index bdc7aa7534..ab7d6e247d 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -796,7 +796,7 @@ paths: description: Lists the registered policies that should be accepted in EDC negotiation. operationId: getAllowedPoliciesByBpn parameters: - - name: bpnls + - name: businessPartnerNumbers in: query required: false schema: diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index e5db25cb70..a89af03c0d 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -155,8 +155,9 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr @GetMapping("/policies") @ResponseStatus(HttpStatus.OK) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") - public Map> getPolicies(@RequestParam(required = false) final List bpnls) { - return service.getPolicies(bpnls) + public Map> getPolicies( + @RequestParam(required = false) final List businessPartnerNumbers) { + return service.getPolicies(businessPartnerNumbers) .entrySet() .stream() .map(entry -> new AbstractMap.SimpleEntry<>(entry.getKey(), From 968b04dc9e61d12385565c1415631d0b0c46559f Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:30:53 +0100 Subject: [PATCH 22/96] fix(impl): [#199] Code formatting --- .../irs/policystore/models/CreatePolicyRequest.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java index 9b297e5979..a3e3054150 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java @@ -39,20 +39,23 @@ @Schema(description = "Request to add a policy") public record CreatePolicyRequest( - @NotNull // @Schema(description = "Timestamp after which the policy will no longer be accepted in negotiations.", example = "2025-12-12T23:59:59.999Z") // + @NotNull // OffsetDateTime validUntil, // @Schema(description = """ The business partner number (BPN) for which the policy should be registered. This parameter is optional. If not set the policy is registered for each existing BPN. - """, example = "BPNL1234567890AB") // - @Pattern(regexp = BPN_REGEX, message = " Invalid BPN.") String businessPartnerNumber, + """, // + example = "BPNL1234567890AB") // + @Pattern(regexp = BPN_REGEX, message = " Invalid BPN.") // + String businessPartnerNumber, + @Schema(description = "The policy payload.", // + example = CreatePolicyRequest.EXAMPLE_PAYLOAD) // @NotNull // - @Schema(description = "The policy payload.", example = CreatePolicyRequest.EXAMPLE_PAYLOAD) // JsonObject payload) { @SuppressWarnings("java:S2479") From 97122e8f8258ec29779350d6958d8857e009b4e2 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:32:57 +0100 Subject: [PATCH 23/96] fix(impl): [#199] Remove relicts from move of business logic to service --- .../irs/policystore/controllers/PolicyStoreController.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index a89af03c0d..f04f580d84 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -82,8 +82,6 @@ public class PolicyStoreController { public static final String BPN_REGEX = BusinessPartnerNumberListValidator.BPN_REGEX; private final PolicyStoreService service; - private final EdcTransformer edcTransformer; - private static final String DEFAULT = "default"; @Operation(operationId = "registerAllowedPolicy", summary = "Register a policy that should be accepted in EDC negotiation.", From 8397352f0d633ab836316f479592707f017f5dbd Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:34:05 +0100 Subject: [PATCH 24/96] fix(impl): [#199] Add additional validation to avoid wrong API usage --- .../controllers/PolicyStoreController.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index f04f580d84..2ae6705ef4 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -40,9 +40,11 @@ import io.swagger.v3.oas.annotations.responses.ApiResponse; import io.swagger.v3.oas.annotations.responses.ApiResponses; import io.swagger.v3.oas.annotations.security.SecurityRequirement; +import jakarta.servlet.http.HttpServletRequest; import jakarta.validation.Valid; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.collections.CollectionUtils; import org.eclipse.tractusx.irs.common.auth.IrsRoles; import org.eclipse.tractusx.irs.dtos.ErrorResponse; import org.eclipse.tractusx.irs.edc.client.policy.Policy; @@ -83,6 +85,8 @@ public class PolicyStoreController { private final PolicyStoreService service; + private final HttpServletRequest httpServletRequest; + @Operation(operationId = "registerAllowedPolicy", summary = "Register a policy that should be accepted in EDC negotiation.", security = @SecurityRequirement(name = "api_key"), tags = { "Item Relationship Service" }, @@ -155,6 +159,13 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") public Map> getPolicies( @RequestParam(required = false) final List businessPartnerNumbers) { + + final Map parameterMap = this.httpServletRequest.getParameterMap(); + if (CollectionUtils.containsAny(parameterMap.keySet(), List.of("bpn", "bpns", "bpnls"))) { + throw new ResponseStatusException(HttpStatus.BAD_REQUEST, + "Please use parameter 'businessPartnerNumbers' instead"); + } + return service.getPolicies(businessPartnerNumbers) .entrySet() .stream() From a87a67a25b264d80b0a4f26f90850e5a7d5f5ca4 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 02:35:13 +0100 Subject: [PATCH 25/96] fix(impl): [#199] Correct IRS collection for PUT policies request --- local/testing/request-collection/IRS_Request_Collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 1e512acea8..d82b1b0671 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -104,12 +104,12 @@ "modified": 1711099840007, "created": 1693576003390, "url": "{{IRS_HOST}}/irs/policies", - "name": "Update policy", + "name": "Update policies", "description": "", "method": "PUT", "body": { "mimeType": "application/json", - "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policiesIds\": [\n\t\t\"policyId\"\n\t]\n}" + "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policyId\"\n\t]\n}" }, "parameters": [], "headers": [ From 6a75e2926a8fe359fe566272d25c39809f4339ee Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 11 Mar 2024 15:06:01 +0100 Subject: [PATCH 26/96] fix(impl): [#199] Fix gitignore --- .gitignore | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5e4582a016..2603550c32 100644 --- a/.gitignore +++ b/.gitignore @@ -71,7 +71,5 @@ 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/charts/ +/charts/item-relationship-service/Chart.lock From 21b107cc1ac9f786379cbecee7c05b20d24daa90 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 03:57:17 +0100 Subject: [PATCH 27/96] fix(impl): [#199] Fix validation and add documentation --- .../irs/controllers/IrsExceptionHandler.java | 26 +++++++++++++++++-- .../controllers/PolicyStoreController.java | 9 +++++-- .../BusinessPartnerNumberListValidator.java | 19 +++++++++----- .../ValidListOfBusinessPartnerNumbers.java | 6 ++++- 4 files changed, 49 insertions(+), 11 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java index b8d1805b74..a98edf7010 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java @@ -26,6 +26,7 @@ import java.util.List; import java.util.NoSuchElementException; +import jakarta.validation.ConstraintViolationException; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.exception.ExceptionUtils; import org.eclipse.tractusx.irs.dtos.ErrorResponse; @@ -66,6 +67,25 @@ public ResponseEntity handleResponseStatusException(final Respons .build()); } + /** + * Handler for {@link ConstraintViolationException} + * + * @param exception see {@link ConstraintViolationException} + * @return see {@link ErrorResponse} + */ + @ExceptionHandler(ConstraintViolationException.class) + public ResponseEntity handleConstraintViolation(final ConstraintViolationException exception) { + log.info(exception.getClass().getName(), exception); + + final HttpStatus httpStatus = HttpStatus.BAD_REQUEST; + return ResponseEntity.status(httpStatus) + .body(ErrorResponse.builder() + .withStatusCode(httpStatus) + .withError(httpStatus.getReasonPhrase()) + .withMessages(List.of(exception.getMessage())) + .build()); + } + /** * Handler for spring BindException * @@ -91,7 +111,8 @@ public ResponseEntity handleBindException(final BindException exc } @ExceptionHandler(MethodArgumentTypeMismatchException.class) - public ResponseEntity handleMethodArgumentTypeMismatchException(final MethodArgumentTypeMismatchException exception) { + public ResponseEntity handleMethodArgumentTypeMismatchException( + final MethodArgumentTypeMismatchException exception) { log.info(exception.getClass().getName(), exception); if (exception.getRootCause() instanceof IllegalArgumentException illegalArgumentException) { @@ -117,7 +138,8 @@ public ResponseEntity handleIllegalStateException(final IllegalSt } @ExceptionHandler(HttpMessageNotReadableException.class) - public ResponseEntity handleHttpMessageNotReadableException(final HttpMessageNotReadableException exception) { + public ResponseEntity handleHttpMessageNotReadableException( + final HttpMessageNotReadableException exception) { log.info(exception.getClass().getName(), exception); String message = "Malformed JSON request"; diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 2ae6705ef4..89deebaf71 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -54,8 +54,10 @@ import org.eclipse.tractusx.irs.policystore.models.UpdatePolicyRequest; import org.eclipse.tractusx.irs.policystore.services.PolicyStoreService; import org.eclipse.tractusx.irs.policystore.validators.BusinessPartnerNumberListValidator; +import org.eclipse.tractusx.irs.policystore.validators.ValidListOfBusinessPartnerNumbers; import org.springframework.http.HttpStatus; import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; @@ -79,6 +81,7 @@ "PMD.ExcessiveImports", "PMD.UseVarargs" }) +@Validated public class PolicyStoreController { public static final String BPN_REGEX = BusinessPartnerNumberListValidator.BPN_REGEX; @@ -157,8 +160,10 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr @GetMapping("/policies") @ResponseStatus(HttpStatus.OK) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") - public Map> getPolicies( - @RequestParam(required = false) final List businessPartnerNumbers) { + public Map> getPolicies( // + @RequestParam(required = false) // + @ValidListOfBusinessPartnerNumbers // + final List businessPartnerNumbers) { final Map parameterMap = this.httpServletRequest.getParameterMap(); if (CollectionUtils.containsAny(parameterMap.keySet(), List.of("bpn", "bpns", "bpnls"))) { diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java index 7cd81e3f8e..ef9a5f4a1d 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java @@ -25,29 +25,36 @@ import jakarta.validation.ConstraintValidator; import jakarta.validation.ConstraintValidatorContext; +/** + * Validator for list of business partner numbers (BPN). + */ public class BusinessPartnerNumberListValidator implements ConstraintValidator> { + /** + * Regex for BPN. + */ public static final String BPN_REGEX = "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}"; private static final Pattern PATTERN = Pattern.compile(BPN_REGEX); @Override public boolean isValid(List value, ConstraintValidatorContext context) { + + // allow null and empty here (in order to allow flexible combination with @NotNull and @NotEmpty) if (value == null || value.isEmpty()) { return true; } - for (int i = 0; i < value.size(); i++) { - if (!PATTERN.matcher(value.get(i)).matches()) { + for (int index = 0; index < value.size(); index++) { + if (!PATTERN.matcher(value.get(index)).matches()) { context.disableDefaultConstraintViolation(); - context.buildConstraintViolationWithTemplate( - "The business partner number at index %d is invalid (should conform to pattern '%s')".formatted( - i, BPN_REGEX)).addConstraintViolation(); + final String msg = "The business partner number at index %d is invalid (should conform to pattern '%s')"; + context.buildConstraintViolationWithTemplate(msg.formatted(index, BPN_REGEX)).addConstraintViolation(); return false; } } return true; } -} \ No newline at end of file +} diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java index bd68f94617..44b11e0a11 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java @@ -28,6 +28,9 @@ import jakarta.validation.Constraint; import jakarta.validation.Payload; +/** + * Annotation for validating list of business partner numbers. + */ @Documented @Constraint(validatedBy = BusinessPartnerNumberListValidator.class) @Target({ ElementType.FIELD, @@ -35,9 +38,10 @@ }) @Retention(RetentionPolicy.RUNTIME) public @interface ValidListOfBusinessPartnerNumbers { + String message() default "Invalid list of business partner numbers"; Class[] groups() default { }; Class[] payload() default { }; -} \ No newline at end of file +} From e2ba964526d2a128ac53184f3998d2e782cad7a4 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 04:30:52 +0100 Subject: [PATCH 28/96] fix(impl): [#199] tests --- .../controllers/IrsExceptionHandlerTest.java | 153 +++++++++++++----- 1 file changed, 110 insertions(+), 43 deletions(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandlerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandlerTest.java index d36324a41b..921057af72 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandlerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandlerTest.java @@ -25,11 +25,13 @@ import static io.restassured.RestAssured.given; import static org.eclipse.tractusx.irs.util.TestMother.registerJobWithoutDepthAndAspect; +import static org.hamcrest.Matchers.containsString; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static org.springframework.http.HttpStatus.BAD_REQUEST; import static org.springframework.http.HttpStatus.FORBIDDEN; import static org.springframework.http.HttpStatus.INTERNAL_SERVER_ERROR; +import static org.springframework.http.HttpStatus.OK; import static org.springframework.web.client.HttpServerErrorException.InternalServerError; import io.restassured.RestAssured; @@ -40,6 +42,7 @@ import org.eclipse.tractusx.irs.services.IrsItemGraphQueryService; import org.eclipse.tractusx.irs.services.SemanticHubService; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.junit.jupiter.MockitoExtension; @@ -54,13 +57,18 @@ @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = { "digitalTwinRegistry.type=central" }) -@ActiveProfiles(profiles = { "test", "local" }) +@ActiveProfiles(profiles = { "test", + "local" +}) @Import(TestConfig.class) -@ExtendWith({ MockitoExtension.class, SpringExtension.class }) +@ExtendWith({ MockitoExtension.class, + SpringExtension.class +}) class IrsExceptionHandlerTest extends ControllerTest { @MockBean private IrsItemGraphQueryService service; + @MockBean private SemanticHubService semanticHubService; @@ -73,63 +81,122 @@ public void configureRestAssured() { RestAssured.port = port; } - @Test - void handleAll() { - authenticateWith(IrsRoles.VIEW_IRS); + @Nested + class PoliciesTests { + + @Test + void getPolicies_forbidden() { + authenticateWith(IrsRoles.VIEW_IRS); + given().port(port).get("/irs/policies").then().statusCode(FORBIDDEN.value()); + } + + @Test + void getPolicies_success() { + authenticateWith(IrsRoles.ADMIN_IRS); + given().port(port).get("/irs/policies").then().statusCode(OK.value()); + } + + @Test + void getPolicies_withInvalidBpn() { + authenticateWith(IrsRoles.ADMIN_IRS); + given().port(port) + .get("/irs/policies?businessPartnerNumbers=invalid") + .then() + .statusCode(BAD_REQUEST.value()) + .body("messages[0]", containsString("The business partner number at index 0 is invalid")); + } + + @Test + void getPolicies_withValidAndInvalidBpn() { + authenticateWith(IrsRoles.ADMIN_IRS); + given().port(port) + .get("/irs/policies" // + + "?businessPartnerNumbers=BPNL1234567890AB" // + + "&businessPartnerNumbers=__invalid__BPN__" // + + "&businessPartnerNumbers=BPNL1234567890AB") + .then() + .statusCode(BAD_REQUEST.value()) + .body("messages[0]", containsString("The business partner number at index 1 is invalid")); + } + + @Test + void getPolicies_withEmptyBpn() { + authenticateWith(IrsRoles.ADMIN_IRS); + given().port(port) + .get("/irs/policies" // + + "?businessPartnerNumbers=BPNL1234567890AB" // + + "&businessPartnerNumbers=__invalid__BPN__" // + + "&businessPartnerNumbers=BPNL1234567890AB") + .then() + .statusCode(BAD_REQUEST.value()) + .body("messages[0]", containsString("The business partner number at index 1 is invalid")); + } + } + + @Nested + class JobsTests { - when(service.registerItemJob(any())).thenThrow(InternalServerError.class); + @Test + void handleAll() { + authenticateWith(IrsRoles.VIEW_IRS); - given().port(port).contentType(ContentType.JSON).body(registerJobWithoutDepthAndAspect()).post("/irs/jobs") - .then().statusCode(INTERNAL_SERVER_ERROR.value()); + when(service.registerItemJob(any())).thenThrow(InternalServerError.class); + + given().port(port) + .contentType(ContentType.JSON) + .body(registerJobWithoutDepthAndAspect()) + .post("/irs/jobs") + .then() + .statusCode(INTERNAL_SERVER_ERROR.value()); + } } - @Test - void shouldReturn500WhenGetSemanticModelsFails() throws Exception { - authenticateWith(IrsRoles.VIEW_IRS); + @Nested + class AspectModelsTests { - when(semanticHubService.getAllAspectModels()).thenThrow(InternalServerError.class); + @Test + void shouldReturn500WhenGetSemanticModelsFails() throws Exception { + authenticateWith(IrsRoles.VIEW_IRS); - given().port(port).get("/irs/aspectmodels") - .then().statusCode(INTERNAL_SERVER_ERROR.value()); - } + when(semanticHubService.getAllAspectModels()).thenThrow(InternalServerError.class); - @Test - void shouldReturn400WhenProvidingBadInput() throws Exception { - authenticateWith(IrsRoles.VIEW_IRS); + given().port(port).get("/irs/aspectmodels").then().statusCode(INTERNAL_SERVER_ERROR.value()); + } - when(semanticHubService.getAllAspectModels()).thenThrow(IllegalArgumentException.class); + @Test + void shouldReturn400WhenProvidingBadInput() throws Exception { + authenticateWith(IrsRoles.VIEW_IRS); - given().port(port).get("/irs/aspectmodels") - .then().statusCode(BAD_REQUEST.value()); - } + when(semanticHubService.getAllAspectModels()).thenThrow(IllegalArgumentException.class); - @Test - void shouldReturn400WhenCatchingIllegalStateException() throws Exception { - authenticateWith(IrsRoles.VIEW_IRS); + given().port(port).get("/irs/aspectmodels").then().statusCode(BAD_REQUEST.value()); + } - when(semanticHubService.getAllAspectModels()).thenThrow(IllegalStateException.class); + @Test + void shouldReturn400WhenCatchingIllegalStateException() throws Exception { + authenticateWith(IrsRoles.VIEW_IRS); - given().port(port).get("/irs/aspectmodels") - .then().statusCode(BAD_REQUEST.value()); - } + when(semanticHubService.getAllAspectModels()).thenThrow(IllegalStateException.class); - @Test - void shouldReturn400WhenCatchingMethodArgumentTypeMismatchException() throws Exception { - authenticateWith(IrsRoles.VIEW_IRS); + given().port(port).get("/irs/aspectmodels").then().statusCode(BAD_REQUEST.value()); + } - when(semanticHubService.getAllAspectModels()).thenThrow(MethodArgumentTypeMismatchException.class); + @Test + void shouldReturn400WhenCatchingMethodArgumentTypeMismatchException() throws Exception { + authenticateWith(IrsRoles.VIEW_IRS); - given().port(port).get("/irs/aspectmodels") - .then().statusCode(BAD_REQUEST.value()); - } + when(semanticHubService.getAllAspectModels()).thenThrow(MethodArgumentTypeMismatchException.class); + + given().port(port).get("/irs/aspectmodels").then().statusCode(BAD_REQUEST.value()); + } - @Test - void shouldReturn403WhenRightsAreMissing() throws Exception { - authenticateWith(IrsRoles.VIEW_IRS); + @Test + void shouldReturn403WhenRightsAreMissing() throws Exception { + authenticateWith(IrsRoles.VIEW_IRS); - when(semanticHubService.getAllAspectModels()).thenThrow(AccessDeniedException.class); + when(semanticHubService.getAllAspectModels()).thenThrow(AccessDeniedException.class); - given().port(port).get("/irs/aspectmodels") - .then().statusCode(FORBIDDEN.value()); + given().port(port).get("/irs/aspectmodels").then().statusCode(FORBIDDEN.value()); + } } -} \ No newline at end of file +} From 09925a4d936ab638479b65c0bae6774ac6f48fee Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 04:59:14 +0100 Subject: [PATCH 29/96] fix(impl): [#199] Correct API doc --- docs/src/api/irs-api.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index ab7d6e247d..06033344e3 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -880,7 +880,7 @@ paths: tags: - Item Relationship Service put: - description: Updates an existing policy. + description: Updates existing policies. operationId: updateAllowedPolicy requestBody: content: @@ -920,7 +920,7 @@ paths: description: Authorization refused by server. security: - api_key: [ ] - summary: Updates an existing policy. + summary: Updates existing policies. tags: - Item Relationship Service /irs/policies/{policyId}: From f9400dc0940e8848cd7f439d8293d1c7b977aa63 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 04:59:31 +0100 Subject: [PATCH 30/96] fix(impl): [#199] Format code --- .../controllers/PolicyStoreController.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 89deebaf71..0100a59b22 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -171,12 +171,13 @@ public Map> getPolicies( // "Please use parameter 'businessPartnerNumbers' instead"); } - return service.getPolicies(businessPartnerNumbers) - .entrySet() - .stream() - .map(entry -> new AbstractMap.SimpleEntry<>(entry.getKey(), - entry.getValue().stream().map(PolicyResponse::fromPolicy).toList())) - .collect(Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); + final Map> policies = service.getPolicies(businessPartnerNumbers); + + return policies.entrySet() + .stream() + .map(entry -> new AbstractMap.SimpleEntry<>(entry.getKey(), + entry.getValue().stream().map(PolicyResponse::fromPolicy).toList())) + .collect(Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue)); } @Operation(operationId = "deleteAllowedPolicy", From 6e3b4881e47b49c6ffb38ff271716ec26ed7d7c3 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 05:03:22 +0100 Subject: [PATCH 31/96] fix(impl): [#199] Fix checkstyle --- .../irs/policystore/controllers/PolicyStoreController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 0100a59b22..d1fad32c2f 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -160,7 +160,7 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr @GetMapping("/policies") @ResponseStatus(HttpStatus.OK) @PreAuthorize("hasAuthority('" + IrsRoles.ADMIN_IRS + "')") - public Map> getPolicies( // + public Map> getPolicies(// @RequestParam(required = false) // @ValidListOfBusinessPartnerNumbers // final List businessPartnerNumbers) { @@ -172,7 +172,7 @@ public Map> getPolicies( // } final Map> policies = service.getPolicies(businessPartnerNumbers); - + return policies.entrySet() .stream() .map(entry -> new AbstractMap.SimpleEntry<>(entry.getKey(), From b86b209bd4fa11f1f537d95afd21e5a23f3d9b94 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 05:15:54 +0100 Subject: [PATCH 32/96] fix(impl): [#199] Fix OpenAPI annotation --- .../irs/policystore/controllers/PolicyStoreController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index d1fad32c2f..0e26db38da 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -33,6 +33,7 @@ import java.util.stream.Collectors; import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.ExampleObject; @@ -163,7 +164,7 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr public Map> getPolicies(// @RequestParam(required = false) // @ValidListOfBusinessPartnerNumbers // - final List businessPartnerNumbers) { + @Parameter(description = "List of business partner numbers.") final List businessPartnerNumbers) { final Map parameterMap = this.httpServletRequest.getParameterMap(); if (CollectionUtils.containsAny(parameterMap.keySet(), List.of("bpn", "bpns", "bpnls"))) { From 78c42467a2130a0cb0603fbd20aa2a9f9223b32e Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 05:16:44 +0100 Subject: [PATCH 33/96] fix(impl): [#199] add todo concerning OpenAPI response value description for GET policies --- .../irs/policystore/controllers/PolicyStoreController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 0e26db38da..8cad644c21 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -144,6 +144,7 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Returns the policies.", content = { @Content(mediaType = APPLICATION_JSON_VALUE, array = @ArraySchema( schema = @Schema(implementation = Policy.class))) + // TODO #199 OpenApi does not describe returned map correctly }), @ApiResponse(responseCode = "401", description = UNAUTHORIZED_DESC, content = { @Content(mediaType = APPLICATION_JSON_VALUE, From 25e8259a17f98806ed1f19c39dcb0e4ee23164b0 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 28 Mar 2024 05:38:37 +0100 Subject: [PATCH 34/96] fix(impl): [#199] fix insomnia collection - fix Get all policies - add Get policies for BPN - fix Create policy body ("payload" with single policy instead of array named "policies"), see #249 --- .../IRS_Request_Collection.json | 52 +++++++++++++++++-- 1 file changed, 48 insertions(+), 4 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index d82b1b0671..01f36f74ba 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -7,9 +7,9 @@ { "_id": "req_2d5a4fb5ec0845059533cb9904910156", "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", - "modified": 1711099785377, + "modified": 1705006817408, "created": 1705005887617, - "url": "{{IRS_HOST}}/irs/policies?bpnls=BPNL00000001CRHK", + "url": "{{IRS_HOST}}/irs/policies", "name": "Get all policies", "description": "", "method": "GET", @@ -25,7 +25,6 @@ }, "metaSortKey": -1705005887617, "isPrivate": false, - "pathParameters": [], "settingStoreCookies": true, "settingSendCookies": true, "settingDisableRenderRequestBody": false, @@ -34,6 +33,51 @@ "settingFollowRedirects": "global", "_type": "request" }, + { + "_id": "req_3982c8bdad534c0ea601f61bdb785816", + "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", + "modified": 1711596830125, + "created": 1711449523700, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get policies for BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "id": "pair_8482da576c10480b9f7edf7a4aa752c6", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890AB", + "description": "", + "disabled": false + }, + { + "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", + "name": "businessPartnerNumbers", + "value": "BPNL123456789012", + "description": "", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1703116992024, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + } + , { "_id": "fld_c751e5e73d5248a3ae22a44bafae7906", "parentId": "fld_7b1b2f5f85934d3d8c82d7c7ce458380", @@ -3298,7 +3342,7 @@ "method": "POST", "body": { "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"policies\": [\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n\t]\n}" + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" }, "parameters": [], "headers": [ From d5432afad52c893edbcd643b419bcf39b4996473 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Thu, 4 Apr 2024 16:19:09 +0200 Subject: [PATCH 35/96] feat(impl):[XXX] fix compatibility matrix versions --- COMPATIBILITY_MATRIX.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index a718f601c6..fb9ffd4754 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -10,9 +10,9 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | 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 | +| DTR | 0.4.1 | 0.4.9 | REST connection | | Minio | RELEASE.2022-11-11T03-44-20Z | 5.0.1 | | -| SingleLevelBomAsBuilt | 2.0.0 | - | Model version | +| SingleLevelBomAsBuilt | 3.0.0 | - | Model version | | SingleLevelBomAsPlanned | 2.0.0 | - | Model version | | SingleLevelBomAsSpecified | 1.0.0 | - | Model version | | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | From a9793e4430a3aae38f1c8ec647fb6c50ff69b70a Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 5 Apr 2024 11:02:16 +0200 Subject: [PATCH 36/96] 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 89986a6f6e3f2472064d220132345ccdcd51c4a8 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 5 Apr 2024 14:17:35 +0200 Subject: [PATCH 37/96] feat(cucumber):[#357] Add expected files for new cucumber tests --- .../TRI-1913-expected-submodels.json | 87 +++++++++++++++++++ .../TRI-1914-expected-submodels.json | 49 +++++++++++ 2 files changed, 136 insertions(+) create mode 100644 irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json create mode 100644 irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json new file mode 100644 index 0000000000..a7d3ad1029 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json @@ -0,0 +1,87 @@ +{ + "submodels": [ + { + "identification": "urn:uuid:59e2d8a9-ea19-4c74-841c-3ac97819e01b", + "aspectType": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "contractAgreementId": "ZTQzZmFlNTktNWQxOS00OGFhLTlhMTMtYzY0NDRiZjA0Njk3:dXJuOnV1aWQ6MmU3NjgyNGItMDRiYi00NDdhLTgxMDItNzczN2Y0ZGFmM2Uz:NDZiMzU2OWItOGE2Yy00MTJkLWI3MTMtNThlMGFmNzY5N2Q2", + "payload": { + "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" + } + }, + { + "identification": "urn:uuid:614b0ff2-14dc-4dd4-9db8-301e41b8ea9d", + "aspectType": "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "contractAgreementId": "MjBkZjVmMWYtOTMwYi00NzM4LWJlNDUtZjMwMjczODY1NDEy:dXJuOnV1aWQ6NjUwZWQ4ZTMtOGViMi00NWM3LWE5MzMtZDI4M2YxNDY4ZDk5:YjgyOTJmODUtYWNlYy00ZTBiLThiYzgtMmI3NzRiYmQzNjNh", + "payload": { + "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" + } + } + } + ] +} \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json new file mode 100644 index 0000000000..97737b4ca0 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json @@ -0,0 +1,49 @@ +{ + "submodels": [ + { + "identification": "urn:uuid:8c315c6e-4a41-4a44-a566-9c8cb8d909d7", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "contractAgreementId": "MjBkZjVmMWYtOTMwYi00NzM4LWJlNDUtZjMwMjczODY1NDEy:dXJuOnV1aWQ6NjUwZWQ4ZTMtOGViMi00NWM3LWE5MzMtZDI4M2YxNDY4ZDk5:YjgyOTJmODUtYWNlYy00ZTBiLThiYzgtMmI3NzRiYmQzNjNh", + "payload": { + "catenaXId": "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childItems": [] + } + }, + { + "identification": "urn:uuid:9a1c9894-e639-438d-8414-2ac25e5c5f12", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "MmM1ZWM3NDAtN2ZhMy00NDE0LTkxY2ItZTk2MzA0Nzc0YzMx:dXJuOnV1aWQ6OWExOWU3ZmUtM2U5Ni00ZTJkLWI0ZDktYmQ1NGVmMjYwZDhk:ZTFjNWQxZmEtM2FmNi00ZDk3LWEyMDYtM2JiYzY4MjUzZGUw", + "payload": { + "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" + } + } + ] +} \ No newline at end of file From 8be31a687a886172c612e71f3cbe0650babbf333 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 5 Apr 2024 14:18:11 +0200 Subject: [PATCH 38/96] feat(testing):[#357] Add new asPlanned testdata --- .../CX_Testdata_v.1.7.0_PartType.json | 6293 +++++++++++++++++ 1 file changed, 6293 insertions(+) create mode 100644 local/testing/testdata/CX_Testdata_v.1.7.0_PartType.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..f42d8a3238 --- /dev/null +++ b/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json @@ -0,0 +1,6293 @@ +{ + "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: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 + } + } + } + } + } + ] + } + ] + } + ] +} \ No newline at end of file From e95dd6dcde4672b4dc898586a7ffeb9188177787 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 11:56:52 +0200 Subject: [PATCH 39/96] Update irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java Co-authored-by: Lucas Capellino <137265091+ds-lcapellino@users.noreply.github.com> --- .../irs/policystore/models/CreatePoliciesResponse.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java index 9111fca9e9..95399261f0 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java @@ -1,6 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * Copyright (c) 2024 Contributors to the Eclipse Foundation * * See the NOTICE file(s) distributed with this work for additional * information regarding copyright ownership. From 7b289650d74d497d8caeb3c2349e155add7c838d Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 11:56:58 +0200 Subject: [PATCH 40/96] Update irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java Co-authored-by: Lucas Capellino <137265091+ds-lcapellino@users.noreply.github.com> --- .../validators/BusinessPartnerNumberListValidator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java index ef9a5f4a1d..5bd9fa0b66 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java @@ -1,6 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * Copyright (c) 2024 Contributors to the Eclipse Foundation * * See the NOTICE file(s) distributed with this work for additional * information regarding copyright ownership. From 8d05fa78e173eacac5f0bff743c277311f100ac4 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 11:57:04 +0200 Subject: [PATCH 41/96] Update irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java Co-authored-by: Lucas Capellino <137265091+ds-lcapellino@users.noreply.github.com> --- .../validators/ValidListOfBusinessPartnerNumbers.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java index 44b11e0a11..bcfd91fb5f 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java @@ -1,6 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * Copyright (c) 2024 Contributors to the Eclipse Foundation * * See the NOTICE file(s) distributed with this work for additional * information regarding copyright ownership. From 2d9eef2b19a873fd85e71e46ceee642ac0cb7ddd Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 11:57:11 +0200 Subject: [PATCH 42/96] Update irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java Co-authored-by: Lucas Capellino <137265091+ds-lcapellino@users.noreply.github.com> --- .../validators/BusinessPartnerNumberListValidatorTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java index 018f9da437..a3ced7099f 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java @@ -1,6 +1,5 @@ /******************************************************************************** - * Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - * Copyright (c) 2021,2024 Contributors to the Eclipse Foundation + * Copyright (c) 2024 Contributors to the Eclipse Foundation * * See the NOTICE file(s) distributed with this work for additional * information regarding copyright ownership. From 4b919bb0fbdd6be39fa080e8f4b643956d3acc4a Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 12:20:32 +0200 Subject: [PATCH 43/96] feat(impl):[#488] fail that should fail --- DEPENDENCIES | 20 ++-- .../validation/JsonValidatorServiceTest.java | 12 ++ .../resources/json-schema/slab-v3.0.0.json | 103 ++++++++++++++++++ pom.xml | 2 +- 4 files changed, 126 insertions(+), 11 deletions(-) create mode 100644 irs-api/src/test/resources/json-schema/slab-v3.0.0.json diff --git a/DEPENDENCIES b/DEPENDENCIES index 083e281965..a7e7e144d2 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -45,7 +45,7 @@ maven/mavencentral/com.google.guava/failureaccess/1.0.1, Apache-2.0, approved, C maven/mavencentral/com.google.guava/guava/32.0.1-jre, Apache-2.0 AND CC0-1.0 AND CC-PDDC, approved, #8772 maven/mavencentral/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava, Apache-2.0, approved, CQ22657 maven/mavencentral/com.google.j2objc/j2objc-annotations/2.8, Apache-2.0, approved, clearlydefined -maven/mavencentral/com.ibm.icu/icu4j/69.1, Unicode-TOU AND ICU AND BSD-3-Clause AND BSD-2-Clause, approved, CQ23850 +maven/mavencentral/com.ibm.icu/icu4j/74.2, , approved, #11936 maven/mavencentral/com.jayway.jsonpath/json-path/2.9.0, Apache-2.0, approved, clearlydefined maven/mavencentral/com.nimbusds/content-type/2.2, Apache-2.0, approved, clearlydefined maven/mavencentral/com.nimbusds/lang-tag/1.7, Apache-2.0, approved, clearlydefined @@ -197,9 +197,9 @@ maven/mavencentral/net.java.dev.jna/jna/5.12.1, Apache-2.0 OR LGPL-2.1-or-later, maven/mavencentral/net.javacrumbs.json-unit/json-unit-assertj/2.36.1, Apache-2.0, approved, clearlydefined maven/mavencentral/net.javacrumbs.json-unit/json-unit-core/2.36.1, Apache-2.0, approved, clearlydefined maven/mavencentral/net.javacrumbs.json-unit/json-unit-json-path/2.36.1, Apache-2.0, approved, clearlydefined -maven/mavencentral/net.jimblackler.jsonschemafriend/core/0.12.0, Apache-2.0, approved, #10911 -maven/mavencentral/net.jimblackler.jsonschemafriend/extra/0.12.0, Apache-2.0, approved, #10910 -maven/mavencentral/net.jimblackler/jsonschemafriend/0.12.0, Apache-2.0, approved, #10912 +maven/mavencentral/net.jimblackler.jsonschemafriend/core/0.12.4, Apache-2.0, approved, #10911 +maven/mavencentral/net.jimblackler.jsonschemafriend/extra/0.12.4, Apache-2.0, approved, #10910 +maven/mavencentral/net.jimblackler/jsonschemafriend/0.12.4, Apache-2.0, approved, #10912 maven/mavencentral/net.jodah/typetools/0.6.3, Apache-2.0, approved, clearlydefined maven/mavencentral/net.minidev/accessors-smart/2.4.11, Apache-2.0, approved, #7515 maven/mavencentral/net.minidev/accessors-smart/2.4.9, Apache-2.0, approved, #7515 @@ -358,10 +358,10 @@ maven/mavencentral/org.glassfish.jersey.media/jersey-media-json-jackson/3.1.5, E maven/mavencentral/org.glassfish.jersey.media/jersey-media-multipart/3.1.3, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jersey maven/mavencentral/org.glassfish.jersey.media/jersey-media-multipart/3.1.5, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jersey maven/mavencentral/org.glassfish/jakarta.json/2.0.1, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.jsonp -maven/mavencentral/org.graalvm.js/js/21.2.0, UPL-1.0 AND (MPL-2.0 AND LicenseRef-MIT-style) AND (BSD-3-Clause AND UPL-1.0) AND (GPL-2.0-only WITH Classpath-exception-2.0 AND UPL-1.0) AND (UPL-1.0 AND LicenseRef-Permission-Notice), approved, #10176 -maven/mavencentral/org.graalvm.regex/regex/21.2.0, UPL-1.0 AND (Unicode-TOU AND UPL-1.0), approved, #10181 -maven/mavencentral/org.graalvm.sdk/graal-sdk/21.2.0, UPL-1.0, approved, clearlydefined -maven/mavencentral/org.graalvm.truffle/truffle-api/21.2.0, UPL-1.0, approved, #10219 +maven/mavencentral/org.graalvm.js/js/21.3.9, UPL-1.0 AND (UPL-1.0 AND GPL-2.0-only WITH Classpath-exception-2.0) AND BSD-3-Clause AND MPL-2.0, approved, #6714 +maven/mavencentral/org.graalvm.regex/regex/21.3.9, UPL-1.0 AND Unicode-TOU, approved, #6719 +maven/mavencentral/org.graalvm.sdk/graal-sdk/21.3.9, UPL-1.0, approved, #6717 +maven/mavencentral/org.graalvm.truffle/truffle-api/21.3.9, UPL-1.0, approved, #6718 maven/mavencentral/org.hamcrest/hamcrest-core/2.2, BSD-3-Clause, approved, clearlydefined maven/mavencentral/org.hamcrest/hamcrest/2.2, BSD-3-Clause, approved, clearlydefined maven/mavencentral/org.hdrhistogram/HdrHistogram/2.1.12, BSD-2-Clause OR LicenseRef-Public-Domain, approved, CQ13192 @@ -382,8 +382,8 @@ maven/mavencentral/org.jetbrains/annotations/17.0.0, Apache-2.0, approved, clear maven/mavencentral/org.jetbrains/annotations/24.0.1, Apache-2.0, approved, #7417 maven/mavencentral/org.jodd/jodd-lagarto/6.0.6, BSD-2-Clause, approved, clearlydefined maven/mavencentral/org.jodd/jodd-util/6.1.0, BSD-2-Clause, approved, clearlydefined -maven/mavencentral/org.jruby.jcodings/jcodings/1.0.55, MIT, approved, CQ10635 -maven/mavencentral/org.jruby.joni/joni/2.1.41, MIT, approved, CQ10636 +maven/mavencentral/org.jruby.jcodings/jcodings/1.0.58, MIT, approved, CQ10635 +maven/mavencentral/org.jruby.joni/joni/2.2.1, MIT, approved, #8771 maven/mavencentral/org.jsoup/jsoup/1.16.1, MIT, approved, #8462 maven/mavencentral/org.junit.jupiter/junit-jupiter-api/5.9.2, EPL-2.0, approved, #3133 maven/mavencentral/org.junit.jupiter/junit-jupiter-api/5.9.3, EPL-2.0, approved, #3133 diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java index 9da9182d96..d816938fc3 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java @@ -34,12 +34,24 @@ import java.util.Objects; import org.eclipse.tractusx.irs.util.JsonUtil; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; class JsonValidatorServiceTest { private final JsonValidatorService testee = new JsonValidatorService(new JsonUtil()); + @Test + @Disabled + void shouldFailWhenSchemaIsInThirdVerAndPayloadInSecondVer() throws Exception { + final String schema = readFile("/json-schema/slab-v3.0.0.json"); + final String payload = readFile("/__files/integrationtesting/singleLevelBomAsBuilt-2.json"); + + final ValidationResult result = testee.validate(schema, payload); + + assertThat(result.isValid()).isFalse(); + } + @Test void shouldValidateAssemblyPartRelationship() throws Exception { final String schema = readFile("/json-schema/assemblyPartRelationship-v1.1.0.json"); diff --git a/irs-api/src/test/resources/json-schema/slab-v3.0.0.json b/irs-api/src/test/resources/json-schema/slab-v3.0.0.json new file mode 100644 index 0000000000..56f26d15f3 --- /dev/null +++ b/irs-api/src/test/resources/json-schema/slab-v3.0.0.json @@ -0,0 +1,103 @@ +{ + "$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/pom.xml b/pom.xml index 96611cfa6b..58ad38570d 100644 --- a/pom.xml +++ b/pom.xml @@ -97,7 +97,7 @@ 1.76 3.3.1 1.16.1 - 0.12.0 + 0.12.4 2.14.0 3.12.0 4.10.0 From e627aabb03f1775481676b9a6d65f0ceae0ee382 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 12:30:20 +0200 Subject: [PATCH 44/96] feat(impl):[#488] comment --- .../irs/services/validation/JsonValidatorServiceTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java index d816938fc3..8e188c7681 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorServiceTest.java @@ -42,7 +42,7 @@ class JsonValidatorServiceTest { private final JsonValidatorService testee = new JsonValidatorService(new JsonUtil()); @Test - @Disabled + @Disabled("Should not pass validation, but currently payload is valid with schema v.3.0.0") void shouldFailWhenSchemaIsInThirdVerAndPayloadInSecondVer() throws Exception { final String schema = readFile("/json-schema/slab-v3.0.0.json"); final String payload = readFile("/__files/integrationtesting/singleLevelBomAsBuilt-2.json"); From 68fe1a65b7ff1ac09493070917efedac8a25eb84 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 12:34:38 +0200 Subject: [PATCH 45/96] fix(impl): [#199] update irs-api.yaml --- docs/src/api/irs-api.yaml | 67 +++++++++++++++++++++++++++++++++------ 1 file changed, 58 insertions(+), 9 deletions(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 06033344e3..b6804167db 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -796,13 +796,14 @@ paths: description: Lists the registered policies that should be accepted in EDC negotiation. operationId: getAllowedPoliciesByBpn parameters: - - name: businessPartnerNumbers - in: query - required: false - schema: - type: array - items: - type: string + - name: businessPartnerNumbers + description: List of business partner numbers. + in: query + required: false + schema: + type: array + items: + type: string responses: "200": content: @@ -846,6 +847,10 @@ paths: required: true responses: "201": + content: + '*/*': + schema: + $ref: '#/components/schemas/CreatePoliciesResponse' description: Created "400": content: @@ -855,7 +860,7 @@ paths: $ref: '#/components/examples/error-response-400' schema: $ref: '#/components/schemas/ErrorResponse' - description: Policy registration failed. + description: Policy registration failed due to an invalid request. "401": content: application/json: @@ -874,6 +879,15 @@ paths: schema: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. + "500": + content: + application/json: + examples: + error: + $ref: '#/components/examples/error-response-500' + schema: + $ref: '#/components/schemas/ErrorResponse' + description: Policy registration failed due to an internal error. security: - api_key: [] summary: Register a policy that should be accepted in EDC negotiation. @@ -918,6 +932,15 @@ paths: schema: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. + "500": + content: + application/json: + examples: + error: + $ref: '#/components/examples/error-response-500' + schema: + $ref: '#/components/schemas/ErrorResponse' + description: Updating policies failed due to an internal error. security: - api_key: [ ] summary: Updates existing policies. @@ -1310,6 +1333,12 @@ components: messages: - NotFoundException statusCode: 404 NOT_FOUND + error-response-500: + value: + error: Internal Server Error + messages: + - InternalServerError + statusCode: 500 INTERNAL_SERVER_ERROR failed-job-result: value: bpns: [] @@ -1732,11 +1761,26 @@ components: type: array items: $ref: '#/components/schemas/Constraint' + CreatePoliciesResponse: + type: object + additionalProperties: false + properties: + policyId: + type: string + description: ID of the registered policy CreatePolicyRequest: type: object additionalProperties: false description: Request to add a policy properties: + businessPartnerNumber: + type: string + description: | + The business partner number (BPN) for which the policy should be registered. + This parameter is optional. + If not set the policy is registered for each existing BPN. + example: BPNL1234567890AB + pattern: "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}" payload: type: array items: @@ -2968,18 +3012,23 @@ components: properties: businessPartnerNumbers: type: array + description: Business Partner Number (BPN). items: type: string + description: Business Partner Number (BPN). policyIds: type: array + description: The IDs of the policies to be updated. items: type: string + description: The IDs of the policies to be updated. validUntil: type: string format: date-time description: Timestamp after which the policy will no longer be accepted - in negotiations + in negotiations. required: + - policyIds - validUntil securitySchemes: api_key: From d7e0a33f16f6ec12e548778a8cffc7b417ecac01 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Mon, 8 Apr 2024 12:35:00 +0200 Subject: [PATCH 46/96] fix(impl): [#199] remove obsolete code --- .../validators/BusinessPartnerNumberListValidatorTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java index 018f9da437..9c510c3fe7 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidatorTest.java @@ -71,8 +71,6 @@ void withValidListOfStrings() { void withListContainingInvalidBPN() { List invalidList = Arrays.asList(VALID_BPN_1, "INVALID_BPN", VALID_BPN_2); assertThat(validator.isValid(invalidList, contextMock)).isFalse(); - // verify(contextMock).buildConstraintViolationWithTemplate( - //// startsWith("Element at index 1 does not match the pattern")); verify(contextMock).buildConstraintViolationWithTemplate(messageCaptor.capture()); assertThat(messageCaptor.getValue()).contains("BPN").contains(" index 1 ").contains("invalid"); } From 9535e4fe4288dc2eef572268cabea7fa2c03b3ae Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 8 Apr 2024 14:11:39 +0200 Subject: [PATCH 47/96] 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 48/96] 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 49/96] 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 From 3ca8844a938e3883907f850038a4eb628f30e1a8 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Mon, 8 Apr 2024 17:00:54 +0200 Subject: [PATCH 50/96] feat(cucumber):[#357] Add expected files for new cucumber tests --- .../TRI-1915-expected-submodels.json | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json new file mode 100644 index 0000000000..b1e508c317 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json @@ -0,0 +1,39 @@ +{ + "submodels": [ + { + "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" + } + ] + }, + { + "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" + } + ] + } + ] +} \ No newline at end of file From b04026d5ae90ba3eec5e1a6233a176d2c4966260 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 12:31:03 +0200 Subject: [PATCH 51/96] fix(impl): [#199] add test --- .../services/PolicyHelperTest.java | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyHelperTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyHelperTest.java index 1362d7a7bb..8612ae2610 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyHelperTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyHelperTest.java @@ -30,7 +30,7 @@ class PolicyHelperTest { @Test - void shouldFilterMapByPolicyId() { + void findBpnsByPolicyId_shouldFilterMapByPolicyId() { // ARRANGE final HashMap> policyMap = new HashMap<>(); @@ -50,4 +50,23 @@ void shouldFilterMapByPolicyId() { assertThat(result).containsExactlyInAnyOrder("BPN1", "BPN2", "BPN4"); } + @Test + void havingPolicyId_whenAppliedAsFilterToAListOfPolicies_shouldFilterByPolicyId() { + + // ARRANGE + final String policyIdToFind = "policyToFind"; + List policies = List.of( // + Policy.builder().policyId("policy1").build(), // + Policy.builder().policyId(policyIdToFind).build(), // + Policy.builder().policyId("policy3").build(), // + Policy.builder().policyId("policy4").build(), // + Policy.builder().policyId(policyIdToFind).build()); + + // ACT + final List result = policies.stream().filter(PolicyHelper.havingPolicyId(policyIdToFind)).toList(); + + // ASSERT + assertThat(result.stream().map(Policy::getPolicyId).toList()).hasSize(2).containsOnly(policyIdToFind); + } + } From 06c542a866098b58a3982bb7eb305bddf1b582e9 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 12:34:39 +0200 Subject: [PATCH 52/96] fix(impl): [#199] group constants via interface reason: better distinguish between configured and registered default policy/policies --- .../services/PolicyStoreService.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index 37b9e7cbaf..cc4a4db3ee 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -69,7 +69,20 @@ }) public class PolicyStoreService implements AcceptedPoliciesProvider { - public static final int DEFAULT_POLICY_LIFETIME_YEARS = 5; + /** + * Constants for the configured default policy. + */ + private interface ConfiguredDefaultPolicy { + /** + * ID for default policy (see TRI-1594) + */ + String DEFAULT_POLICY_ID = "default-policy"; + + /** + * Lifetime for default policy in years (see TRI-1594) + */ + int DEFAULT_POLICY_LIFETIME_YEARS = 5; + } private final List allowedPoliciesFromConfig; @@ -295,6 +308,8 @@ private List createDefaultPolicyFromConfig( acceptedPolicy.getRightOperand()))); final Policy policy = new Policy("default-policy", OffsetDateTime.now(), OffsetDateTime.now().plusYears(DEFAULT_POLICY_LIFETIME_YEARS), + final Policy policy = new Policy(ConfiguredDefaultPolicy.DEFAULT_POLICY_ID, OffsetDateTime.now(), + OffsetDateTime.now().plusYears(ConfiguredDefaultPolicy.DEFAULT_POLICY_LIFETIME_YEARS), List.of(new Permission(PolicyType.USE, new Constraints(constraints, constraints)))); return List.of(policy); From dd1486213ae78c4cb563b99ab95a9a9ec1f5a4a9 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 12:44:42 +0200 Subject: [PATCH 53/96] fix(impl): [#199] correct logging --- .../tractusx/irs/policystore/services/PolicyStoreService.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index cc4a4db3ee..cd276d9c33 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -195,7 +195,7 @@ public Map> getAllStoredPolicies() { } public void deletePolicy(final String policyId) { - log.info("Getting all policies to find correct bpn number"); + log.info("Getting all policies to find correct BPN"); final List bpnsContainingPolicyId = PolicyHelper.findBpnsByPolicyId(getAllStoredPolicies(), policyId); if (bpnsContainingPolicyId.isEmpty()) { @@ -306,8 +306,6 @@ private List createDefaultPolicyFromConfig( new Constraint(acceptedPolicy.getLeftOperand(), new Operator(OperatorType.fromValue(acceptedPolicy.getOperator())), acceptedPolicy.getRightOperand()))); - final Policy policy = new Policy("default-policy", OffsetDateTime.now(), - OffsetDateTime.now().plusYears(DEFAULT_POLICY_LIFETIME_YEARS), final Policy policy = new Policy(ConfiguredDefaultPolicy.DEFAULT_POLICY_ID, OffsetDateTime.now(), OffsetDateTime.now().plusYears(ConfiguredDefaultPolicy.DEFAULT_POLICY_LIFETIME_YEARS), List.of(new Permission(PolicyType.USE, new Constraints(constraints, constraints)))); From 45fd8956f8cc914aa3879483136a6891704ae4a0 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 12:51:03 +0200 Subject: [PATCH 54/96] fix(impl): [#199] fix default handling including: - additional tests - improved test naming - superfluous SuppressWarnings removed --- .../services/PolicyStoreService.java | 35 ++++++++--- .../services/PolicyStoreServiceTest.java | 62 ++++++++++++++----- 2 files changed, 73 insertions(+), 24 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index cd276d9c33..fe62a2eb9f 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -37,6 +37,7 @@ import java.util.Optional; import java.util.TreeSet; import java.util.stream.Collectors; +import java.util.stream.Stream; import jakarta.json.JsonObject; import lombok.extern.slf4j.Slf4j; @@ -95,7 +96,7 @@ private interface ConfiguredDefaultPolicy { private static final String MISSING_REQUEST_FIELD_MESSAGE = "Request does not contain all required fields. " + "Missing: %s"; - private static final String DEFAULT = "default"; + static final String DEFAULT = "default"; public PolicyStoreService(final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig, final PolicyPersistence persistence, final EdcTransformer edcTransformer, final Clock clock) { @@ -178,6 +179,12 @@ public List getStoredPolicies(final List bpnls) { storedPolicies.addAll(persistence.readAll(bpn)); } + // Policies not associated with a BPN (default policies) should only be returned + // if there are no policies that are registered for this BPN explicitly (see #199). + if (storedPolicies.isEmpty()) { + storedPolicies.addAll(persistence.readAll(DEFAULT_BLOB_NAME)); + } + if (storedPolicies.isEmpty()) { log.info("Policy store is empty, returning default values from config"); return allowedPoliciesFromConfig; @@ -276,22 +283,29 @@ private Optional findPolicy(final String policyId, final List bp @Override public List getAcceptedPolicies(final String bpn) { + if (bpn == null) { - return getAllStoredPolicies().values() - .stream() - .flatMap(Collection::stream) - .map(this::toAcceptedPolicy) - .toList(); + return getAllPolicies(); } - final ArrayList policies = new ArrayList<>(); - policies.addAll(getStoredPolicies(List.of(bpn))); - policies.addAll(getStoredPolicies(List.of(DEFAULT_BLOB_NAME))); + final List storedPolicies = getStoredPolicies(List.of(bpn)); + final Stream result = sortByPolicyId(storedPolicies); + return result.map(this::toAcceptedPolicy).toList(); + } + + private static Stream sortByPolicyId(final List policies) { final TreeSet result = new TreeSet<>(Comparator.comparing(Policy::getPolicyId)); result.addAll(policies); + return result.stream(); + } - return result.stream().map(this::toAcceptedPolicy).toList(); + private List getAllPolicies() { + return getAllStoredPolicies().values() + .stream() + .flatMap(Collection::stream) + .map(this::toAcceptedPolicy) + .toList(); } private AcceptedPolicy toAcceptedPolicy(final Policy policy) { @@ -300,6 +314,7 @@ private AcceptedPolicy toAcceptedPolicy(final Policy policy) { private List createDefaultPolicyFromConfig( final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig) { + final List constraints = new ArrayList<>(); defaultAcceptedPoliciesConfig.getAcceptedPolicies() .forEach(acceptedPolicy -> constraints.add( diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java index b6eb45aee0..40bbcf386e 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java @@ -49,6 +49,7 @@ import org.eclipse.edc.core.transform.TypeTransformerRegistryImpl; import org.eclipse.edc.jsonld.TitaniumJsonLd; import org.eclipse.edc.spi.monitor.ConsoleMonitor; +import org.eclipse.tractusx.irs.edc.client.policy.AcceptedPolicy; import org.eclipse.tractusx.irs.edc.client.policy.Constraint; import org.eclipse.tractusx.irs.edc.client.policy.Constraints; import org.eclipse.tractusx.irs.edc.client.policy.Operator; @@ -90,6 +91,7 @@ class PolicyStoreServiceTest { @Captor private ArgumentCaptor policyCaptor; + @Captor private ArgumentCaptor bpnCaptor; @@ -129,7 +131,7 @@ void registerPolicy_withBpnNull_shouldStoreAsDefault() { } @Test - void registerPolicy() { + void registerPolicy_success() { // ARRANGE final OffsetDateTime now = OffsetDateTime.now(); @@ -243,10 +245,10 @@ void doRegisterPolicy_withMissingConstraintShouldThrowException() { } @Nested - class GetPoliciesTests { + class GetStoredPoliciesTests { @Test - void getStoredPolicies() { + void getStoredPolicies_shouldReturnAllPoliciesStoredForTheBpn() { // ARRANGE final List policies = List.of(createPolicy("test1"), createPolicy("test2"), createPolicy("test3")); @@ -260,9 +262,11 @@ void getStoredPolicies() { } @Test - void getDefaultStoredPoliciesWhenEmpty() { + void getStoredPolicies_whenNoPoliciesForBpn_shouldReturnTheConfiguredDefaultPolicies() { // ARRANGE + + // default policy configuration final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy1 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( EXAMPLE_ACCEPTED_LEFT_OPERAND, "eq", EXAMPLE_ALLOWED_NAME); final DefaultAcceptedPoliciesConfig.AcceptedPolicy acceptedPolicy2 = new DefaultAcceptedPoliciesConfig.AcceptedPolicy( @@ -284,9 +288,13 @@ void getDefaultStoredPoliciesWhenEmpty() { assertThat(constraints.getOr()).hasSize(2); assertThat(constraints.getAnd()).hasSize(2); } + } + + @Nested + class GetAcceptedPoliciesTests { @Test - void shouldReturnDefaultPolicyWhenBpnIsEmpty() { + void getAcceptedPolicies_whenParameterBpnIsNull_shouldReturnTheConfiguredDefaultPolicy() { // ARRANGE when(persistenceMock.readAll()).thenReturn(emptyMap()); @@ -295,7 +303,35 @@ void shouldReturnDefaultPolicyWhenBpnIsEmpty() { final var acceptedPolicies = testee.getAcceptedPolicies(null); // ASSERT - assertThat(acceptedPolicies.get(0).policy().getPolicyId()).isEqualTo("default-policy"); + final String policyIdOfConfiguredDefaultPolicy = "default-policy"; + assertThat(acceptedPolicies.get(0).policy().getPolicyId()).isEqualTo(policyIdOfConfiguredDefaultPolicy); + } + + @Test + void getAcceptedPolicies_whenNoPoliciesAssociatedWithTheGivenBpn_shouldReturnTheRegisteredDefaultPolicies() { + + // ARRANGE + when(persistenceMock.readAll(BPN)).thenReturn(emptyList()); + + // policy registered without BPN should be used as default policy (see #199) + // this overrides the configured default policy (see the previous test above) + final String defaultPolicyId1 = "registered-default-policy-1"; + final String defaultPolicyId2 = "registered-default-policy-2"; + when(persistenceMock.readAll(PolicyStoreService.DEFAULT)).thenReturn(List.of( + // default policy 1 + createPolicy(defaultPolicyId1), + // default policy 2 + createPolicy(defaultPolicyId2))); + + // ACT + final var acceptedPolicies = testee.getAcceptedPolicies(BPN); + + // ASSERT + final List policyIds = acceptedPolicies.stream() + .map(AcceptedPolicy::policy) + .map(Policy::getPolicyId) + .toList(); + assertThat(policyIds).containsExactlyInAnyOrder(defaultPolicyId1, defaultPolicyId2); } } @@ -320,7 +356,7 @@ private Constraints createConstraints() { class DeletePolicyTests { @Test - void deletePolicy_success() { + void deletePolicy_deleteSuccessful() { // ARRANGE when(persistenceMock.readAll()).thenReturn(Map.of(BPN, List.of(new Policy("testId", null, null, null)))); @@ -332,7 +368,7 @@ void deletePolicy_success() { } @Test - void deletePolicy_internalServerError() { + void deletePolicy_exceptionFromPolicyPersistence_shouldReturnHttpStatus500() { // ACT final String policyId = "testId"; @@ -345,7 +381,7 @@ void deletePolicy_internalServerError() { } @Test - void deletePolicy_policyNotFound() { + void deletePolicy_whenPolicyNotFound_shouldReturnHttpStatus404() { // ACT final String policyId = "notExistingPolicyId"; @@ -360,10 +396,10 @@ void deletePolicy_policyNotFound() { } @Nested - class UpdatePolicyTests { + class UpdatePoliciesTests { @Test - void updatePolicy_withBpnAndValidUntilChanged() { + void updatePolicies_shouldUpdateBpnAndValidUntil() { // ARRANGE final String policyId = "testId"; @@ -392,7 +428,6 @@ void updatePolicy_withBpnAndValidUntilChanged() { assertThat(policyCaptor.getValue().getValidUntil()).isEqualTo(expectedValidUntil); } - @SuppressWarnings("unchecked") @Test void updatePolicies_shouldAddPolicyToEachBpn() { @@ -426,7 +461,6 @@ void updatePolicies_shouldAddPolicyToEachBpn() { assertThat(bpnCaptor.getAllValues().get(1)).isEqualTo("bpn2"); } - @SuppressWarnings("unchecked") @Test void updatePolicies_shouldAssociateEachGivenPolicyWithEachGivenBpn() { @@ -477,7 +511,7 @@ void updatePolicies_shouldAssociateEachGivenPolicyWithEachGivenBpn() { } @Test - void updatePolicy_shouldThrowResponseStatusException() { + void updatePolicies_exceptionFromPolicyPersistence_shouldReturnHttpStatus500() { // ARRANGE final String policyId = "testId"; From d1fe5a156015847b22765e94ea212402882fa0d8 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 9 Apr 2024 13:03:19 +0200 Subject: [PATCH 55/96] feat(irs-api):[#357] Add capability to add SAMM models locally --- CHANGELOG.md | 2 ++ .../tractusx/irs/semanticshub/SemanticsHubClient.java | 8 +++++--- .../irs/semanticshub/SemanticsHubClientImplTest.java | 8 ++++++-- ...2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ | 0 4 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 irs-api/src/test/resources/aspect-models/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ diff --git a/CHANGELOG.md b/CHANGELOG.md index a472505553..867226cef4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [UNRELEASED] ### Added +- SAMM models can now be added locally #488 +- Introduced new Cucumber Tests to cover Industry Core 2.0.0 compatibility #488 ### Changed 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 f376a6e7ac..88c71a2db5 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 @@ -109,7 +109,8 @@ public List getAllAspectModels() { @Profile({ "!local && !test" }) class SemanticsHubClientImpl implements SemanticsHubClient { - public static final String LOCAL_MODEL_TYPE = "BAMM"; + public static final String LOCAL_MODEL_TYPE_BAMM = "BAMM"; + public static final String LOCAL_MODEL_TYPE_SAMM = "SAMM"; public static final String LOCAL_MODEL_STATUS = "PROVIDED"; private static final String PLACEHOLDER_URN = "urn"; private final SemanticsHubConfiguration config; @@ -182,11 +183,12 @@ private String getDecodedString(final String urnBase64) { private Optional createAspectModel(final String urn) { log.debug("Extracting aspect information for urn: '{}'", urn); - final Matcher matcher = Pattern.compile("^urn:bamm:.*:(\\d\\.\\d\\.\\d)#(\\w+)$").matcher(urn); + final Matcher matcher = Pattern.compile("^urn:[sb]amm:.*:(\\d\\.\\d\\.\\d)#(\\w+)$").matcher(urn); if (matcher.find()) { final String version = matcher.group(1); final String name = matcher.group(2); - return Optional.of(new AspectModel(urn, version, name, LOCAL_MODEL_TYPE, LOCAL_MODEL_STATUS)); + final String localModelType = urn.contains("samm") ? LOCAL_MODEL_TYPE_SAMM : LOCAL_MODEL_TYPE_BAMM; + return Optional.of(new AspectModel(urn, version, name, localModelType, LOCAL_MODEL_STATUS)); } log.warn("Could not extract aspect information from urn: '{}'", urn); return Optional.empty(); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java index a1ef007142..3f570584f5 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java @@ -163,14 +163,18 @@ void shouldGetAllModelsFromFilesystemOnly() throws SchemaNotFoundException { final var testee = new SemanticsHubClientImpl(restTemplate, config("", new File(path).getPath())); final AspectModel serialPartTypization = new AspectModel( "urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization", "1.0.0", - "SerialPartTypization", SemanticsHubClientImpl.LOCAL_MODEL_TYPE, + "SerialPartTypization", SemanticsHubClientImpl.LOCAL_MODEL_TYPE_BAMM, + SemanticsHubClientImpl.LOCAL_MODEL_STATUS); + final AspectModel singleLevelBomAsBuilt = new AspectModel( + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", "3.0.0", + "SingleLevelBomAsPlanned", SemanticsHubClientImpl.LOCAL_MODEL_TYPE_SAMM, SemanticsHubClientImpl.LOCAL_MODEL_STATUS); // Act final List allAspectModels = testee.getAllAspectModels(); // Assert - assertThat(allAspectModels).hasSize(1).contains(serialPartTypization); + assertThat(allAspectModels).hasSize(2).contains(serialPartTypization).contains(singleLevelBomAsBuilt); } @Test diff --git a/irs-api/src/test/resources/aspect-models/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ b/irs-api/src/test/resources/aspect-models/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ new file mode 100644 index 0000000000..e69de29bb2 From 437c59fad9f53557404623365b77ce499ffe76ab Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 9 Apr 2024 14:03:22 +0200 Subject: [PATCH 56/96] feat(irs-api):[#357] Ignore padding for locally provided schema files --- .../irs/semanticshub/SemanticsHubClient.java | 2 +- .../SemanticsHubClientImplTest.java | 12 ++ ...WQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ | 113 ++++++++++++++++++ 3 files changed, 126 insertions(+), 1 deletion(-) create mode 100644 irs-api/src/test/resources/json-schema/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ 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 88c71a2db5..8066c18503 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 @@ -259,7 +259,7 @@ private Optional readFromSemanticHub(final String urn) { } private String normalize(final String urn) { - return Base64.getEncoder().encodeToString(FilenameUtils.getName(urn).getBytes(StandardCharsets.UTF_8)); + return Base64.getEncoder().withoutPadding().encodeToString(FilenameUtils.getName(urn).getBytes(StandardCharsets.UTF_8)); } private String decode(final String urnBase64) { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java index 3f570584f5..faa06358e6 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java @@ -96,6 +96,18 @@ void shouldReadJsonSchemaFromFilesystemOnly() throws SchemaNotFoundException { assertThat(resultJsonSchema).isNotBlank().contains("http://json-schema.org/draft-04/schema"); } + @Test + void shouldReadJsonSchemaFromFilesystemWithUrlSafeFileName() throws SchemaNotFoundException { + final String path = Objects.requireNonNull( + getClass().getResource("/json-schema/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ")).getPath(); + + final var testee = new SemanticsHubClientImpl(restTemplate, config("", new File(path).getParent())); + + final String resultJsonSchema = testee.getModelJsonSchema("urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned"); + + assertThat(resultJsonSchema).isNotBlank().contains("http://json-schema.org/draft-04/schema"); + } + @Test void shouldReadJsonSchemaFromSemanticHubThenFilesystem() throws SchemaNotFoundException { final String path = Objects.requireNonNull( diff --git a/irs-api/src/test/resources/json-schema/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ b/irs-api/src/test/resources/json-schema/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ new file mode 100644 index 0000000000..59737d1fce --- /dev/null +++ b/irs-api/src/test/resources/json-schema/dXJuOnNhbW06aW8uY2F0ZW5heC5zaW5nbGVfbGV2ZWxfYm9tX2FzX3BsYW5uZWQ6My4wLjAjU2luZ2xlTGV2ZWxCb21Bc1BsYW5uZWQ @@ -0,0 +1,113 @@ +{ + "$schema" : "http://json-schema.org/draft-04/schema", + "description" : "The single-level bill of material (BoM)represents one sub-level of an assembly and does not include any lower-level subassemblies. In the As-Planned lifecycle state all variants are covered (\"120% BoM\").\nIf multiple versions of child parts exist that can be assembled into the same parent part, all versions of the child part are included in the BoM.\nIf there are multiple suppliers for the same child part, each supplier has an entry for their child part in the BoM.", + "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_planned_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.single_level_bom_as_planned_3.0.0_ValidityPeriodCharacteristic" : { + "description" : "Characteristic for a validity period defined by an (optional)start and an (optional)end timestamp.", + "type" : "object", + "properties" : { + "validFrom" : { + "description" : "Start date of validity period.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_DateTimeTrait" + }, + "validTo" : { + "description" : "End date of validity period.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_DateTimeTrait" + } + } + }, + "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_io.catenax.single_level_bom_as_planned_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 part and the child part was created", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_DateTimeTrait" + }, + "quantity" : { + "description" : "Quantity of which the child part will be assembled into the parent part.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.shared.quantity_2.0.0_ItemQuantityCharacteristic" + }, + "lastModifiedOn" : { + "description" : "Timestamp when the relationship between parent part and child part was last modified.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_DateTimeTrait" + }, + "validityPeriod" : { + "description" : "The period of time during which the parent-child relation is valid. This relates to whether a child part can be built into the parent part at a given time.\nIf no validity period is given the relation is considered valid at any point in time.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_ValidityPeriodCharacteristic" + }, + "businessPartner" : { + "description" : "The supplier of the given child item.", + "$ref" : "#/components/schemas/urn_samm_io.catenax.shared.business_partner_number_2.0.0_BpnlTrait" + }, + "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", "catenaXId" ] + }, + "urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_SetOfChildItemsCharacteristic" : { + "description" : "Set of child items the parent object will be assembled by (one structural level down).", + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_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 in As-Planned lifecycle phase, of which the given parent object is assembled by (one structural level down).", + "$ref" : "#/components/schemas/urn_samm_io.catenax.single_level_bom_as_planned_3.0.0_SetOfChildItemsCharacteristic" + } + }, + "required" : [ "catenaXId", "childItems" ] +} \ No newline at end of file From df41ca3701c7bf703e49af8d85b82999e5c44552 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 9 Apr 2024 14:53:09 +0200 Subject: [PATCH 57/96] chore(docs):[#357] Add Industry Core Models --- COMPATIBILITY_MATRIX.md | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index a718f601c6..d2c436bb45 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -2,6 +2,28 @@ Full changelog of IRS: [changelog](CHANGELOG.md) +## [Unreleased] + +| Dependency | Version | Helm | Comments | +|----------------------------|------------------------------|------------|-----------------| +| EDC | 0.5.3 | 0.5.3 | | +| EDC PostgresSQL | 15.1.0-debian-11-r12 | 12.1.6 | Optional | +| MIW | 0.1.0 | 0.1.0 | REST connection | +| Semantics Hub | 0.1.29 | v0.2.11-M1 | REST connection | +| DTR | 0.3.14-M1 | 0.3.22 | REST connection | +| Minio | RELEASE.2022-11-11T03-44-20Z | 5.0.1 | | +| SingleLevelBomAsBuilt | 2.0.0 | - | Model version | +| SingleLevelBomAsPlanned | 2.0.0 | - | Model version | +| SingleLevelBomAsSpecified | 1.0.0 | - | Model version | +| SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | +| PartAsPlanned | 2.0.0 | - | Model Version | +| SingleLevelBomAsPlanned | 3.0.0 | - | Model Version | +| SerialPart | 3.0.0 | - | Model Version | +| Batch | 3.0.0 | - | Model Version | +| JustInSequencePart | 3.0.0 | - | Model Version | +| SingleLevelBomAsBuilt | 3.0.0 | - | Model Version | +| PartSiteInformationAsBuilt | 1.0.0 | - | Model Version | + ## [4.9.0] - 2024-04-03 | Dependency | Version | Helm | Comments | @@ -18,6 +40,7 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | ## [4.8.0] - 2024-03-18 + | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| | EDC | 0.5.3 | 0.5.3 | | @@ -31,8 +54,8 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | SingleLevelBomAsSpecified | 1.0.0 | - | Model version | | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | - ## [4.7.0] - 2024-03-04 + | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| | EDC | 0.5.3 | 0.5.3 | | @@ -46,8 +69,8 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | SingleLevelBomAsSpecified | 1.0.0 | - | Model version | | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | - ## [4.6.0] - 2024-02-20 + | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| | EDC | 0.5.3 | 0.5.3 | | @@ -61,8 +84,8 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | SingleLevelBomAsSpecified | 1.0.0 | - | Model version | | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | - ## [4.2.0] - 2023-11-28 + | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| | EDC | 0.5.3 | 0.5.3 | | @@ -77,6 +100,7 @@ Full changelog of IRS: [changelog](CHANGELOG.md) | SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | ## [4.1.0] - 2023-11-15 + | Dependency | Version | Helm | Comments | |---------------------------|------------------------------|------------|-----------------| | EDC | 0.5.3 | 0.5.3 | | From 88d5ea9fc64db17230ab651ba8886ae8a7e98261 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 9 Apr 2024 16:13:51 +0200 Subject: [PATCH 58/96] feat(cucumber):[#357] Adjust to latest testdata version --- .../TRI-1913-expected-submodels.json | 70 ++++++++-------- .../TRI-1914-expected-submodels.json | 17 +--- .../TRI-1915-expected-submodels.json | 84 ++++++++++++------- .../TRI-1918-expected-submodels.json | 25 ++++++ 4 files changed, 118 insertions(+), 78 deletions(-) create mode 100644 irs-cucumber-tests/src/test/resources/expected-files/TRI-1918-expected-submodels.json diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json index a7d3ad1029..b5a3f3a313 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json @@ -1,38 +1,30 @@ { "submodels": [ { - "identification": "urn:uuid:59e2d8a9-ea19-4c74-841c-3ac97819e01b", - "aspectType": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", - "contractAgreementId": "ZTQzZmFlNTktNWQxOS00OGFhLTlhMTMtYzY0NDRiZjA0Njk3:dXJuOnV1aWQ6MmU3NjgyNGItMDRiYi00NDdhLTgxMDItNzczN2Y0ZGFmM2Uz:NDZiMzU2OWItOGE2Yy00MTJkLWI3MTMtNThlMGFmNzY5N2Q2", + "identification": "urn:uuid:39eb0751-bc99-48ee-8fd8-dbf233badb5f", + "aspectType": "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "contractAgreementId": "MmVjYjQ1YzEtN2QxNy00NTMxLWFlMmItNDhiYjQwYzA5MTcw:dXJuOnV1aWQ6MjIwZGI2NmQtM2VmMi00Yzg1LWFiYzgtZDlhNDhkMDZiMDNh:YzQzYzUyY2MtNjA4ZC00M2E0LTliNWYtMjcxZDE0NDMwOTUw", "payload": { "localIdentifiers": [ { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-747120479071756798529531", - "key": "partInstanceId" + "value": "82227044FBE", + "key": "jisNumber" } ], "manufacturingInformation": { "date": "2022-02-04T14:48:54", - "country": "DEU", + "country": "HUR", "sites": [ { - "catenaXsiteId": "BPNS00000003CSGV", + "catenaXsiteId": "BPNS00000000BJTL", "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", + "manufacturerPartId": "123-0.740-3434-A", + "customerPartId": "PRT-12345", "partClassification": [ { "classificationDescription": "Standard data element types with associated classification scheme for electric components.", @@ -40,37 +32,44 @@ "classificationID": "61360- 2:2012 " } ], - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" - }, - "itemVersion": "05" + "nameAtManufacturer": "Mirror left", + "nameAtCustomer": "side element A" + } } }, { - "identification": "urn:uuid:614b0ff2-14dc-4dd4-9db8-301e41b8ea9d", - "aspectType": "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", - "contractAgreementId": "MjBkZjVmMWYtOTMwYi00NzM4LWJlNDUtZjMwMjczODY1NDEy:dXJuOnV1aWQ6NjUwZWQ4ZTMtOGViMi00NWM3LWE5MzMtZDI4M2YxNDY4ZDk5:YjgyOTJmODUtYWNlYy00ZTBiLThiYzgtMmI3NzRiYmQzNjNh", + "identification": "urn:uuid:ec9ba5fc-339e-4142-89be-872650c6ab2f", + "aspectType": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "contractAgreementId": "MDBmZDcyMDktYTE2MS00OWM5LWFiMzAtMmUwMDllNWE3MDAw:dXJuOnV1aWQ6Njc1NWMyZTAtNzc5Ni00NTYzLWE1NjktYTk3NmZjZTNiYjQ3:MjhhN2VlY2EtMDQwNi00ZjQ4LWI2NDktMjhiYzU0NzcyNTcx", "payload": { "localIdentifiers": [ { - "value": "86681316RUO", - "key": "jisNumber" + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-073366714159387479576634", + "key": "partInstanceId" } ], "manufacturingInformation": { "date": "2022-02-04T14:48:54", - "country": "HUR", + "country": "DEU", "sites": [ { - "catenaXsiteId": "BPNS00000000BJTL", + "catenaXsiteId": "BPNS00000003CSGV", "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", + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", "partClassification": [ { "classificationDescription": "Standard data element types with associated classification scheme for electric components.", @@ -78,9 +77,10 @@ "classificationID": "61360- 2:2012 " } ], - "nameAtManufacturer": "Mirror left", - "nameAtCustomer": "side element A" - } + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" + }, + "itemVersion": "05" } } ] diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json index 97737b4ca0..862e847d27 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json @@ -1,18 +1,9 @@ { "submodels": [ { - "identification": "urn:uuid:8c315c6e-4a41-4a44-a566-9c8cb8d909d7", - "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", - "contractAgreementId": "MjBkZjVmMWYtOTMwYi00NzM4LWJlNDUtZjMwMjczODY1NDEy:dXJuOnV1aWQ6NjUwZWQ4ZTMtOGViMi00NWM3LWE5MzMtZDI4M2YxNDY4ZDk5:YjgyOTJmODUtYWNlYy00ZTBiLThiYzgtMmI3NzRiYmQzNjNh", - "payload": { - "catenaXId": "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItems": [] - } - }, - { - "identification": "urn:uuid:9a1c9894-e639-438d-8414-2ac25e5c5f12", + "identification": "urn:uuid:17354138-5bf3-45ba-899a-d5245d4d9c83", "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", - "contractAgreementId": "MmM1ZWM3NDAtN2ZhMy00NDE0LTkxY2ItZTk2MzA0Nzc0YzMx:dXJuOnV1aWQ6OWExOWU3ZmUtM2U5Ni00ZTJkLWI0ZDktYmQ1NGVmMjYwZDhk:ZTFjNWQxZmEtM2FmNi00ZDk3LWEyMDYtM2JiYzY4MjUzZGUw", + "contractAgreementId": "MDBmZDcyMDktYTE2MS00OWM5LWFiMzAtMmUwMDllNWE3MDAw:dXJuOnV1aWQ6Njc1NWMyZTAtNzc5Ni00NTYzLWE1NjktYTk3NmZjZTNiYjQ3:MjhhN2VlY2EtMDQwNi00ZjQ4LWI2NDktMjhiYzU0NzcyNTcx", "payload": { "localIdentifiers": [ { @@ -30,9 +21,9 @@ } ] }, - "catenaXId": "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "partTypeInformation": { - "manufacturerPartId": "LV-64", + "manufacturerPartId": "SC-00", "partClassification": [ { "classificationDescription": "Standard data element types with associated classification scheme for electric components.", diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json index b1e508c317..838a0841b8 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json @@ -1,39 +1,63 @@ { "submodels": [ { - "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" + "identification": "urn:uuid:716429d0-3108-46fd-869f-b6c86d32cc08", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MjdmMWI0YWQtZDhjNS00NzQxLWFkOWUtYjA1OTViYjQwYzcw", + "payload": { + "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" }, - "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" - } - ] + { + "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" + } + ] + } }, { - "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" - } - ] + "identification": "urn:uuid:2e8ea560-693d-4755-83b6-03e111975f71", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:MzVmNWEwYWItOGVlNy00MzlhLWIxM2UtMjQyYWI2NzUzMmU1", + "payload": { + "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" + } + ] + } } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1918-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1918-expected-submodels.json new file mode 100644 index 0000000000..7f9406eed3 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1918-expected-submodels.json @@ -0,0 +1,25 @@ +{ + "submodels": [ + { + "identification": "urn:uuid:91f0050f-7aea-4f84-828e-899b17cc56be", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "contractAgreementId": "MmVjYjQ1YzEtN2QxNy00NTMxLWFlMmItNDhiYjQwYzA5MTcw:dXJuOnV1aWQ6MjIwZGI2NmQtM2VmMi00Yzg1LWFiYzgtZDlhNDhkMDZiMDNh:YzQzYzUyY2MtNjA4ZC00M2E0LTliNWYtMjcxZDE0NDMwOTUw", + "payload": { + "catenaXId": "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "childItems": [ + { + "catenaXId": "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", + "quantity": { + "unit": "unit:piece", + "value": 20 + }, + "hasAlternatives": false, + "businessPartner": "BPNL00000000BJTL", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + } + ] +} \ No newline at end of file From 1431c4a9bac926fd597768444ff71e66ec3fc4ee Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 16:30:07 +0200 Subject: [PATCH 59/96] fix(impl): [#199] fix checkstyle warning (copyright header) --- .../irs/policystore/models/CreatePoliciesResponse.java | 3 ++- .../validators/BusinessPartnerNumberListValidator.java | 3 ++- .../validators/ValidListOfBusinessPartnerNumbers.java | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java index 95399261f0..9111fca9e9 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePoliciesResponse.java @@ -1,5 +1,6 @@ /******************************************************************************** - * Copyright (c) 2024 Contributors to the Eclipse Foundation + * 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. diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java index 5bd9fa0b66..ef9a5f4a1d 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java @@ -1,5 +1,6 @@ /******************************************************************************** - * Copyright (c) 2024 Contributors to the Eclipse Foundation + * 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. diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java index bcfd91fb5f..44b11e0a11 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/ValidListOfBusinessPartnerNumbers.java @@ -1,5 +1,6 @@ /******************************************************************************** - * Copyright (c) 2024 Contributors to the Eclipse Foundation + * 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. From 51c03e2e23cbbd312eebdfef678b8e4641ac6687 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 16:30:46 +0200 Subject: [PATCH 60/96] fix(impl): [#199] fix checkstyle warning (InterfaceIsType) --- .../irs/policystore/services/PolicyStoreService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index fe62a2eb9f..95e7ab71c2 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -73,16 +73,16 @@ public class PolicyStoreService implements AcceptedPoliciesProvider { /** * Constants for the configured default policy. */ - private interface ConfiguredDefaultPolicy { + private final class ConfiguredDefaultPolicy { /** * ID for default policy (see TRI-1594) */ - String DEFAULT_POLICY_ID = "default-policy"; + public static final String DEFAULT_POLICY_ID = "default-policy"; /** * Lifetime for default policy in years (see TRI-1594) */ - int DEFAULT_POLICY_LIFETIME_YEARS = 5; + public static final int DEFAULT_POLICY_LIFETIME_YEARS = 5; } private final List allowedPoliciesFromConfig; From 7efea9d32982d2cd63263a71bd417df89b24c1cb Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 17:28:42 +0200 Subject: [PATCH 61/96] fix(impl): [#199] fix IDE warning --- .../tractusx/irs/policystore/services/PolicyStoreService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index 95e7ab71c2..fcd9fbe288 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -73,7 +73,7 @@ public class PolicyStoreService implements AcceptedPoliciesProvider { /** * Constants for the configured default policy. */ - private final class ConfiguredDefaultPolicy { + private static final class ConfiguredDefaultPolicy { /** * ID for default policy (see TRI-1594) */ From d8957ad6558af8a37ae5f20b28c0c5cf7755c7d1 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 19:08:49 +0200 Subject: [PATCH 62/96] fix(impl): [#199] fix API doc --- .../controllers/PolicyStoreController.java | 16 +++-- .../policystore/models/PolicyResponse.java | 64 ++++++++++++++++++- 2 files changed, 71 insertions(+), 9 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index 8cad644c21..aac16c6448 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -34,7 +34,6 @@ import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; -import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.ExampleObject; import io.swagger.v3.oas.annotations.media.Schema; @@ -141,10 +140,13 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr summary = "Lists the registered policies that should be accepted in EDC negotiation.", security = @SecurityRequirement(name = "api_key"), tags = { "Item Relationship Service" }, description = "Lists the registered policies that should be accepted in EDC negotiation.") - @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Returns the policies.", - content = { @Content(mediaType = APPLICATION_JSON_VALUE, array = @ArraySchema( - schema = @Schema(implementation = Policy.class))) - // TODO #199 OpenApi does not describe returned map correctly + @ApiResponses(value = { @ApiResponse(responseCode = "200", + description = "Returns the policies as map of BPN to list of policies.", + content = { @Content(mediaType = APPLICATION_JSON_VALUE, + examples = @ExampleObject( + value = PolicyResponse.BPN_TO_POLICY_MAP_EXAMPLE), + schema = @Schema( + description = "Map of BPN to list of policies")) }), @ApiResponse(responseCode = "401", description = UNAUTHORIZED_DESC, content = { @Content(mediaType = APPLICATION_JSON_VALUE, @@ -165,7 +167,9 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr public Map> getPolicies(// @RequestParam(required = false) // @ValidListOfBusinessPartnerNumbers // - @Parameter(description = "List of business partner numbers.") final List businessPartnerNumbers) { + @Parameter(description = "List of business partner numbers.") // + final List businessPartnerNumbers // + ) { final Map parameterMap = this.httpServletRequest.getParameterMap(); if (CollectionUtils.containsAny(parameterMap.keySet(), List.of("bpn", "bpns", "bpnls"))) { diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java index f48f1775ef..b4c583a91a 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/PolicyResponse.java @@ -26,12 +26,58 @@ import org.eclipse.tractusx.irs.edc.client.policy.Policy; /** - * Policy representation for get all policies response + * Policy representation for policies response */ @Builder @Schema(example = PolicyResponse.EXAMPLE_PAYLOAD) public record PolicyResponse(OffsetDateTime validUntil, Payload payload) { + public static final String BPN_TO_POLICY_MAP_EXAMPLE = """ + { + "BPNL1234567890AB": [ + { + "validUntil": "2025-12-12T23:59:59.999Z", + "payload": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id3", + "policy": { + "policyId": "p3", + "createdOn": "2024-03-28T03:34:42.9454448Z", + "validUntil": "2025-12-12T23:59:59.999Z", + "permissions": [ + { + "action": "USE", + "constraint": { + "and": [ + { + "leftOperand": "Membership", + "operator": { + "@id": "eq" + }, + "odrl:rightOperand": "active" + }, + { + "leftOperand": "PURPOSE", + "operator": { + "@id": "eq" + }, + "odrl:rightOperand": "ID 3.1 Trace" + } + ], + "or": null + } + } + ] + } + } + } + ], + "BPNA1234567890DF": [] + } + """; + @SuppressWarnings({ "FileTabCharacter", "java:S2479" }) @@ -44,7 +90,7 @@ public record PolicyResponse(OffsetDateTime validUntil, Payload payload) { "@context": { "odrl": "http://www.w3.org/ns/odrl/2/" }, - "@id": "policy-id", + "@id": "policy-id1", "policy": { "odrl:permission": [ { @@ -71,9 +117,21 @@ public record PolicyResponse(OffsetDateTime validUntil, Payload payload) { ] } } + }, + { + "validUntil": "2025-12-31T23:59:59.999Z", + "payload": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" + }, + "@id": "policy-id2", + "policy": { + ... + } + } } ] - """; + """; public static PolicyResponse fromPolicy(final Policy policy) { return PolicyResponse.builder() From 7b1b3a3401b20d806fca7a10eda486aa64d7001c Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Tue, 9 Apr 2024 20:01:10 +0200 Subject: [PATCH 63/96] fix(impl): [#199] corrections in irs-api.yaml --- docs/src/api/irs-api.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 22283d578d..67f90e2399 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -809,10 +809,9 @@ paths: content: application/json: schema: - type: array - items: - $ref: '#/components/schemas/Policy' - description: Returns the policies. + description: Map of BPN to list of policies + type: string + description: Returns the policies as map of BPN to list of policies. "401": content: application/json: @@ -1807,11 +1806,8 @@ components: validUntil: type: string format: date-time - description: Timestamp after which the policy will no longer be accepted in negotiations - businessPartnerNumbers: - type: array - items: - type: string + description: Timestamp after which the policy will no longer be accepted in negotiations. + example: '2025-12-12T23:59:59.999Z' required: - payload - validUntil From 77fb94aea548aea3c5cdb89dfb6471b8608e209d Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 02:00:11 +0200 Subject: [PATCH 64/96] fix(impl): [#199] update irs-api.yaml --- docs/src/api/irs-api.yaml | 1821 ++++++++++++++++--------------------- 1 file changed, 799 insertions(+), 1022 deletions(-) diff --git a/docs/src/api/irs-api.yaml b/docs/src/api/irs-api.yaml index 67f90e2399..0e2af21a7a 100644 --- a/docs/src/api/irs-api.yaml +++ b/docs/src/api/irs-api.yaml @@ -5,9 +5,9 @@ info: title: IRS API version: 4.9.0 servers: - - url: http://localhost:8080 +- url: http://localhost:8080 security: - - api_key: [] +- api_key: [] paths: /ess/bpn/investigations: post: @@ -58,24 +58,24 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] + - api_key: [] summary: Registers an IRS job to start an investigation if a given bpn is contained in a part chain of a given globalAssetId. tags: - - Environmental and Social Standards + - Environmental and Social Standards /ess/bpn/investigations/{id}: get: description: Return job with additional supplyChainImpacted information. operationId: getBPNInvestigation parameters: - - description: Id of the job. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: id - required: true - schema: - type: string - format: uuid + - description: Id of the job. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: id + required: true + schema: + type: string + format: uuid responses: "200": content: @@ -123,10 +123,10 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Job with the requested jobId not found. security: - - api_key: [] + - api_key: [] summary: Return job with additional supplyChainImpacted information. tags: - - Environmental and Social Standards + - Environmental and Social Standards /ess/notification/receive: post: description: Accepts notifications via EDC. Notifications are filtered by their @@ -152,11 +152,48 @@ paths: description: Notification malformed. summary: Accepts notifications sent via EDC. tags: - - Environmental and Social Standards + - Environmental and Social Standards + /irs/aspectmodels: + get: + description: Get all available aspect models from semantic hub or local models. + operationId: getAllAspectModels + responses: + "200": + content: + application/json: + examples: + complete: + $ref: '#/components/examples/aspect-models-list' + schema: + $ref: '#/components/schemas/AspectModels' + description: Returns all available aspect models. + "401": + content: + application/json: + examples: + error: + $ref: '#/components/examples/error-response-401' + schema: + $ref: '#/components/schemas/ErrorResponse' + description: No valid authentication credentials. + "403": + content: + application/json: + examples: + error: + $ref: '#/components/examples/error-response-403' + schema: + $ref: '#/components/schemas/ErrorResponse' + description: Authorization refused by server. + security: + - api_key: [] + summary: Get all available aspect models from semantic hub or local models. + tags: + - Aspect Models /irs/ess/orders: post: - description: "Registers an order for an ESS investigation with an array of - {globalAssetIds}. Each globalAssetId will be processed in an separate job, grouped in batches." + description: "Registers an order for an ESS investigation with an array of {globalAssetIds}.\ + \ Each globalAssetId will be processed in an separate job, grouped in batches." operationId: registerESSInvestigationOrder requestBody: content: @@ -202,57 +239,57 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] - summary: "Registers an order for an ESS investigation with an array of {globalAssetIds}. - Each globalAssetId will be processed in an separate job, grouped in batches." + - api_key: [] + summary: "Registers an order for an ESS investigation with an array of {globalAssetIds}.\ + \ Each globalAssetId will be processed in an separate job, grouped in batches." tags: - - Environmental and Social Standards + - Environmental and Social Standards /irs/jobs: get: description: Returns paginated jobs with state and execution times. operationId: getJobsByJobStates parameters: - - description: Requested job states. - explode: false - in: query - name: states - required: false - schema: - type: array - items: - type: string - enum: - - UNSAVED - - INITIAL - - RUNNING - - TRANSFERS_FINISHED - - COMPLETED - - CANCELED - - ERROR - maxItems: 2147483647 - - description: Zero-based page index (0..N) - in: query - name: page - required: false - schema: - type: integer - default: 0 - - description: The size of the page to be returned - in: query - name: size - required: false - schema: - type: integer - default: 20 - - description: "Sorting criteria in the format: property,(asc|desc). Default\ + - description: Requested job states. + explode: false + in: query + name: states + required: false + schema: + type: array + items: + type: string + enum: + - UNSAVED + - INITIAL + - RUNNING + - TRANSFERS_FINISHED + - COMPLETED + - CANCELED + - ERROR + maxItems: 2147483647 + - description: Zero-based page index (0..N) + in: query + name: page + required: false + schema: + type: integer + default: 0 + - description: The size of the page to be returned + in: query + name: size + required: false + schema: + type: integer + default: 20 + - description: "Sorting criteria in the format: property,(asc|desc). Default\ \ sort order is ascending. Multiple sort criteria are supported." - in: query - name: sort - required: false - schema: - type: array - items: - type: string + in: query + name: sort + required: false + schema: + type: array + items: + type: string responses: "200": content: @@ -289,10 +326,10 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] + - api_key: [] summary: Returns paginated jobs with state and execution times. tags: - - Item Relationship Service + - Item Relationship Service post: description: "Register an IRS job to retrieve an item graph for given {globalAssetId}." operationId: registerJobForGlobalAssetId @@ -340,33 +377,34 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] + - api_key: [] summary: "Register an IRS job to retrieve an item graph for given {globalAssetId}." tags: - - Item Relationship Service + - Item Relationship Service /irs/jobs/{id}: get: description: Return job with optional item graph result for requested id. operationId: getJobForJobId parameters: - - description: Id of the job. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: id - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 - - description: "\\ Return job with current processed item graph. \\ - Return job with item graph if job is in state COMPLETED, otherwise job." - in: query - name: returnUncompletedJob - required: false - schema: - type: boolean - default: true + - description: Id of the job. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: id + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 + - description: "\\ Return job with current processed item graph. \\\ + Return job with item graph if job is in state COMPLETED, otherwise\ + \ job." + in: query + name: returnUncompletedJob + required: false + schema: + type: boolean + default: true responses: "200": content: @@ -424,24 +462,24 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Job with the requested jobId not found. security: - - api_key: [] + - api_key: [] summary: Return job with optional item graph result for requested id. tags: - - Item Relationship Service + - Item Relationship Service put: description: Cancel job for requested jobId. operationId: cancelJobByJobId parameters: - - description: Id of the job. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: id - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 + - description: Id of the job. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: id + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 responses: "200": content: @@ -489,51 +527,14 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Job for requested jobId not found. security: - - api_key: [] + - api_key: [] summary: Cancel job for requested jobId. tags: - - Item Relationship Service - /irs/aspectmodels: - get: - description: Get all available aspect models from semantic hub or local models. - operationId: getAllAspectModels - responses: - "200": - content: - application/json: - examples: - complete: - $ref: "#/components/examples/aspect-models-list" - schema: - $ref: "#/components/schemas/AspectModels" - description: Returns all available aspect models. - "401": - content: - application/json: - examples: - error: - $ref: "#/components/examples/error-response-401" - schema: - $ref: "#/components/schemas/ErrorResponse" - description: No valid authentication credentials. - "403": - content: - application/json: - examples: - error: - $ref: "#/components/examples/error-response-403" - schema: - $ref: "#/components/schemas/ErrorResponse" - description: Authorization refused by server. - security: - - api_key: [] - summary: Get all available aspect models from semantic hub or local models. - tags: - - Aspect Models + - Item Relationship Service /irs/orders: post: - description: "Registers an IRS order with an array of {globalAssetIds}.\ - \ Each globalAssetId will be processed in an IRS Job, grouped in batches." + description: "Registers an IRS order with an array of {globalAssetIds}. Each\ + \ globalAssetId will be processed in an IRS Job, grouped in batches." operationId: registerOrder requestBody: content: @@ -579,26 +580,26 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] - summary: "Registers an IRS order with an array of {globalAssetIds}.\ - \ Each globalAssetId will be processed in an IRS Job, grouped in batches." + - api_key: [] + summary: "Registers an IRS order with an array of {globalAssetIds}. Each globalAssetId\ + \ will be processed in an IRS Job, grouped in batches." tags: - - Item Relationship Service + - Item Relationship Service /irs/orders/{orderId}: get: description: Get a batch order for a given orderId. operationId: getBatchOrder parameters: - - description: Id of the order. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: orderId - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 + - description: Id of the order. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: orderId + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 responses: "200": content: @@ -646,24 +647,24 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Batch Order with the requested orderId not found. security: - - api_key: [] + - api_key: [] summary: Get a batch order for a given orderId. tags: - - Item Relationship Service + - Item Relationship Service put: description: Cancel a batch order for a given orderId. operationId: cancelBatchOrder parameters: - - description: Id of the order. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: orderId - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 + - description: Id of the order. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: orderId + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 responses: "200": content: @@ -711,35 +712,35 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Batch Order with the requested orderId not found. security: - - api_key: [] + - api_key: [] summary: Cancel a batch order for a given orderId. tags: - - Item Relationship Service + - Item Relationship Service /irs/orders/{orderId}/batches/{batchId}: get: description: Get a batch with a given batchId for a given orderId. operationId: getBatch parameters: - - description: Id of the order. - example: 6c311d29-5753-46d4-b32c-19b918ea93b0 - in: path - name: orderId - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 - - description: Id of the batch. - example: 4bce40b8-64c7-41bf-9ca3-e9432c7fef98 - in: path - name: batchId - required: true - schema: - type: string - format: uuid - maxLength: 36 - minLength: 36 + - description: Id of the order. + example: 6c311d29-5753-46d4-b32c-19b918ea93b0 + in: path + name: orderId + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 + - description: Id of the batch. + example: 4bce40b8-64c7-41bf-9ca3-e9432c7fef98 + in: path + name: batchId + required: true + schema: + type: string + format: uuid + maxLength: 36 + minLength: 36 responses: "200": content: @@ -787,30 +788,55 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Batch with the requested orderId and batchId not found. security: - - api_key: [] + - api_key: [] summary: Get a batch with a given batchId for a given orderId. tags: - - Item Relationship Service + - Item Relationship Service /irs/policies: get: description: Lists the registered policies that should be accepted in EDC negotiation. operationId: getAllowedPoliciesByBpn parameters: - - name: businessPartnerNumbers - description: List of business partner numbers. + - description: List of business partner numbers. in: query + name: businessPartnerNumbers required: false schema: - type: array - items: - type: string + type: array + items: + type: string responses: "200": content: application/json: + example: + BPNL1234567890AB: + - validUntil: 2025-12-12T23:59:59.999Z + payload: + '@context': + odrl: http://www.w3.org/ns/odrl/2/ + '@id': policy-id3 + policy: + policyId: p3 + createdOn: 2024-03-28T03:34:42.9454448Z + validUntil: 2025-12-12T23:59:59.999Z + permissions: + - action: USE + constraint: + and: + - leftOperand: Membership + operator: + '@id': eq + odrl:rightOperand: active + - leftOperand: PURPOSE + operator: + '@id': eq + odrl:rightOperand: ID 3.1 Trace + or: null + BPNA1234567890DF: [] schema: - description: Map of BPN to list of policies type: string + description: Map of BPN to list of policies description: Returns the policies as map of BPN to list of policies. "401": content: @@ -831,10 +857,10 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [ ] + - api_key: [] summary: Lists the registered policies that should be accepted in EDC negotiation. tags: - - Item Relationship Service + - Item Relationship Service post: description: Register a policy that should be accepted in EDC negotiation. operationId: registerAllowedPolicy @@ -888,10 +914,10 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Policy registration failed due to an internal error. security: - - api_key: [] + - api_key: [] summary: Register a policy that should be accepted in EDC negotiation. tags: - - Item Relationship Service + - Item Relationship Service put: description: Updates existing policies. operationId: updateAllowedPolicy @@ -941,20 +967,20 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Updating policies failed due to an internal error. security: - - api_key: [ ] + - api_key: [] summary: Updates existing policies. tags: - - Item Relationship Service + - Item Relationship Service /irs/policies/{policyId}: delete: description: Removes a policy that should no longer be accepted in EDC negotiation. operationId: deleteAllowedPolicy parameters: - - in: path - name: policyId - required: true - schema: - type: string + - in: path + name: policyId + required: true + schema: + type: string responses: "200": description: OK @@ -986,12 +1012,26 @@ paths: $ref: '#/components/schemas/ErrorResponse' description: Authorization refused by server. security: - - api_key: [] + - api_key: [] summary: Removes a policy that should no longer be accepted in EDC negotiation. tags: - - Item Relationship Service + - Item Relationship Service components: examples: + aspect-models-list: + value: + lastUpdated: 2023-02-13T08:18:11.990659500Z + models: + - name: SingleLevelBomAsBuilt + status: RELEASED + type: BAMM + urn: urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt + version: 2.0.0 + - name: SerialPart + status: RELEASED + type: BAMM + urn: urn:bamm:io.catenax.serial_part:1.0.1#SerialPart + version: 1.0.1 canceled-job-response: value: completedOn: 2022-02-03T14:48:54.709Z @@ -1041,10 +1081,10 @@ components: batchTotal: 1 completedOn: 2022-02-03T14:48:54.709Z jobs: - - completedOn: 2022-02-03T14:48:54.709Z - id: 6c311d29-5753-46d4-b32c-19b918ea93b0 - startedOn: 2022-02-03T14:48:54.709Z - state: COMPLETED + - completedOn: 2022-02-03T14:48:54.709Z + id: 6c311d29-5753-46d4-b32c-19b918ea93b0 + startedOn: 2022-02-03T14:48:54.709Z + state: COMPLETED jobsInBatchChecksum: 1 orderId: f253718e-a270-4367-901b-9d50d9bd8462 startedOn: 2022-02-03T14:48:54.709Z @@ -1052,8 +1092,8 @@ components: complete-ess-job-result: value: bpns: - - manufacturerId: BPNL00000003AAXX - manufacturerName: AB CD + - manufacturerId: BPNL00000003AAXX + manufacturerName: AB CD job: completedOn: 2022-02-03T14:48:54.709Z createdOn: 2022-02-03T14:48:54.709Z @@ -1085,92 +1125,92 @@ components: completed: 3 failed: 0 relationships: - - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - linkedItem: - assembledOn: 2022-02-03T14:48:54.709Z - childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 - hasAlternatives: false - lastModifiedOn: 2022-02-03T14:48:54.709Z - lifecycleContext: asBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1.0 + - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + linkedItem: + assembledOn: 2022-02-03T14:48:54.709Z + childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 + hasAlternatives: false + lastModifiedOn: 2022-02-03T14:48:54.709Z + lifecycleContext: asBuilt + quantity: + measurementUnit: + datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece + lexicalValue: piece + quantityNumber: 1.0 shells: - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 payload: description: - - language: en - text: The shell for a vehicle + - language: en + text: The shell for a vehicle globalAssetId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 id: urn:uuid:882fc530-b69b-4707-95f6-5dbc5e9baaa8 idShort: future concept x specificAssetIds: - - name: engineserialid - value: "12309481209312" + - name: engineserialid + value: "12309481209312" submodelDescriptors: - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: - - "1.0" - href: https://catena-x.net/vehicle/basedetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d - idShort: SingleLevelBomAsPlanned - semanticId: - keys: - - type: ExternalReference - value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned - type: ModelReference - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: - - "1.0" - href: https://catena-x.net/vehicle/partdetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 - idShort: vehicle part details - semanticId: - keys: - - type: Submodel - value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails - type: ModelReference + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/basedetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d + idShort: SingleLevelBomAsPlanned + semanticId: + keys: + - type: ExternalReference + value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned + type: ModelReference + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/partdetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 + idShort: vehicle part details + semanticId: + keys: + - type: Submodel + value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails + type: ModelReference submodels: - - aspectType: supply_chain_impacted - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 - identification: urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff - payload: - supplyChainImpacted: "YES" + - aspectType: supply_chain_impacted + contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 + identification: urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff + payload: + supplyChainImpacted: "YES" tombstones: - - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 - endpointURL: https://catena-x.net/vehicle/partdetails/ - processingError: - errorDetail: Details to reason of failure - lastAttempt: 2022-02-03T14:48:54.709Z - processStep: SchemaValidation - retryCounter: 0 + - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 + endpointURL: https://catena-x.net/vehicle/partdetails/ + processingError: + errorDetail: Details to reason of failure + lastAttempt: 2022-02-03T14:48:54.709Z + processStep: SchemaValidation + retryCounter: 0 complete-job-list-processing-state: value: content: - - completedOn: 2022-02-03T14:48:54.709Z - id: 6c311d29-5753-46d4-b32c-19b918ea93b0 - startedOn: 2022-02-03T14:48:54.709Z - state: COMPLETED + - completedOn: 2022-02-03T14:48:54.709Z + id: 6c311d29-5753-46d4-b32c-19b918ea93b0 + startedOn: 2022-02-03T14:48:54.709Z + state: COMPLETED pageCount: 1 pageNumber: 0 pageSize: 10 @@ -1178,8 +1218,8 @@ components: complete-job-result: value: bpns: - - manufacturerId: BPNL00000003AYRE - manufacturerName: OEM A + - manufacturerId: BPNL00000003AYRE + manufacturerName: OEM A job: completedOn: 2022-02-03T14:48:54.709Z createdOn: 2022-02-03T14:48:54.709Z @@ -1208,18 +1248,18 @@ components: failed: 0 running: 0 relationships: - - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - linkedItem: - assembledOn: 2022-02-03T14:48:54.709Z - childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 - hasAlternatives: false - lastModifiedOn: 2022-02-03T14:48:54.709Z - lifecycleContext: asBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1.0 + - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + linkedItem: + assembledOn: 2022-02-03T14:48:54.709Z + childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 + hasAlternatives: false + lastModifiedOn: 2022-02-03T14:48:54.709Z + lifecycleContext: asBuilt + quantity: + measurementUnit: + datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece + lexicalValue: piece + quantityNumber: 1.0 shells: - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 payload: @@ -1230,107 +1270,107 @@ components: id: urn:uuid:882fc530-b69b-4707-95f6-5dbc5e9baaa8 idShort: future concept x specificAssetIds: - - name: engineserialid - value: "12309481209312" + - name: engineserialid + value: "12309481209312" submodelDescriptors: - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: - - "1.0" - href: https://catena-x.net/vehicle/basedetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - idShort: SingleLevelBomAsPlanned - id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d - semanticId: - type: ModelReference - keys: - - type: ExternalReference - value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - href: https://catena-x.net/vehicle/partdetails/ - endpointProtocol: HTTPS - endpointProtocolVersion: - - "1.0" - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 - idShort: vehicle part details - semanticId: - keys: - - type: Submodel - value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails - type: ModelReference + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/basedetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d + idShort: SingleLevelBomAsPlanned + semanticId: + keys: + - type: ExternalReference + value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned + type: ModelReference + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/partdetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 + idShort: vehicle part details + semanticId: + keys: + - type: Submodel + value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails + type: ModelReference submodels: - - 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: - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - childItems: - - createdOn: 2022-02-03T14:48:54.709Z - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - lastModifiedOn: 2022-02-03T14:48:54.709Z - lifecycleContext: AsBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1 + - 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: + catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + childItems: + - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + createdOn: 2022-02-03T14:48:54.709Z + lastModifiedOn: 2022-02-03T14:48:54.709Z + lifecycleContext: AsBuilt + quantity: + measurementUnit: + datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece + lexicalValue: piece + quantityNumber: 1 tombstones: - - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 - endpointURL: https://catena-x.net/vehicle/partdetails/ - processingError: - errorDetail: Details to reason of failure - lastAttempt: 2022-02-03T14:48:54.709Z - processStep: SchemaValidation - retryCounter: 0 + - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 + endpointURL: https://catena-x.net/vehicle/partdetails/ + processingError: + errorDetail: Details to reason of failure + lastAttempt: 2022-02-03T14:48:54.709Z + processStep: SchemaValidation + retryCounter: 0 complete-order-result: value: batchChecksum: 1 batches: - - batchId: f253718e-a270-4367-901b-9d50d9bd8462 - batchNumber: 1 - batchProcessingState: PARTIAL - batchUrl: https://../irs/orders/f253718e-a270-4367-901b-9d50d9bd8462/batches/f253718e-a270-4367-901b-9d50d9bd8462 - jobsInBatchChecksum: 1 + - batchId: f253718e-a270-4367-901b-9d50d9bd8462 + batchNumber: 1 + batchProcessingState: PARTIAL + batchUrl: https://../irs/orders/f253718e-a270-4367-901b-9d50d9bd8462/batches/f253718e-a270-4367-901b-9d50d9bd8462 + jobsInBatchChecksum: 1 orderId: f253718e-a270-4367-901b-9d50d9bd8462 state: COMPLETED error-response-400: value: error: Bad request messages: - - BadRequestException + - BadRequestException statusCode: 400 BAD_REQUEST error-response-401: value: error: Unauthorized messages: - - UnauthorizedException + - UnauthorizedException statusCode: 401 UNAUTHORIZED error-response-403: value: error: Forbidden messages: - - ForbiddenException + - ForbiddenException statusCode: 403 FORBIDDEN error-response-404: value: error: Not found messages: - - NotFoundException + - NotFoundException statusCode: 404 NOT_FOUND error-response-500: value: @@ -1376,8 +1416,8 @@ components: job-result-without-uncompleted-result-tree: value: bpns: - - manufacturerId: BPNL00000003AYRE - manufacturerName: OEM A + - manufacturerId: BPNL00000003AYRE + manufacturerName: OEM A job: completedOn: 2022-02-03T14:48:54.709Z createdOn: 2022-02-03T14:48:54.709Z @@ -1406,18 +1446,18 @@ components: failed: 0 running: 0 relationships: - - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - linkedItem: - assembledOn: 2022-02-03T14:48:54.709Z - childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 - hasAlternatives: false - lastModifiedOn: 2022-02-03T14:48:54.709Z - lifecycleContext: asBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1.0 + - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + linkedItem: + assembledOn: 2022-02-03T14:48:54.709Z + childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 + hasAlternatives: false + lastModifiedOn: 2022-02-03T14:48:54.709Z + lifecycleContext: asBuilt + quantity: + measurementUnit: + datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece + lexicalValue: piece + quantityNumber: 1.0 shells: - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 payload: @@ -1428,71 +1468,73 @@ components: id: urn:uuid:882fc530-b69b-4707-95f6-5dbc5e9baaa8 idShort: future concept x specificAssetIds: - - name: engineserialid - value: "12309481209312" + - name: engineserialid + value: "12309481209312" submodelDescriptors: - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: ["1.0"] - href: https://catena-x.net/vehicle/basedetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d - idShort: SingleLevelBomAsPlanned - semanticId: - type: ModelReference - keys: - - type: ExternalReference - value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - href: https://catena-x.net/vehicle/partdetails/ - endpointProtocol: HTTPS - endpointProtocolVersion: ["1.0"] - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 - idShort: vehicle part details - semanticId: - type: ModelReference - keys: - - type: Submodel - value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/basedetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d + idShort: SingleLevelBomAsPlanned + semanticId: + keys: + - type: ExternalReference + value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned + type: ModelReference + - description: + - language: en + text: Provides base vehicle information + endpoints: + - interface: HTTP + protocolInformation: + endpointProtocol: HTTPS + endpointProtocolVersion: + - "1.0" + href: https://catena-x.net/vehicle/partdetails/ + subprotocol: DSP + subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net + subprotocolBodyEncoding: plain + id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 + idShort: vehicle part details + semanticId: + keys: + - type: Submodel + value: urn:bamm:io.catenax.vehicle:0.1.1#PartDetails + type: ModelReference submodels: - - 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: - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - childItems: - - createdOn: 2022-02-03T14:48:54.709Z - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - lastModifiedOn: 2022-02-03T14:48:54.709Z - lifecycleContext: AsBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1 + - 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: + catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + childItems: + - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 + createdOn: 2022-02-03T14:48:54.709Z + lastModifiedOn: 2022-02-03T14:48:54.709Z + lifecycleContext: AsBuilt + quantity: + measurementUnit: + datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece + lexicalValue: piece + quantityNumber: 1 tombstones: - - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 - endpointURL: https://catena-x.net/vehicle/partdetails/ - processingError: - errorDetail: Details to reason of failure - lastAttempt: 2022-02-03T14:48:54.709Z - processStep: SchemaValidation - retryCounter: 0 + - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 + endpointURL: https://catena-x.net/vehicle/partdetails/ + processingError: + errorDetail: Details to reason of failure + lastAttempt: 2022-02-03T14:48:54.709Z + processStep: SchemaValidation + retryCounter: 0 partial-job-result: value: bpns: [] @@ -1526,20 +1568,6 @@ components: relationships: [] submodels: [] tombstones: [] - aspect-models-list: - value: - lastUpdated: 2023-02-13T08:18:11.990659500Z - models: - - urn: urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt - name: SingleLevelBomAsBuilt - status: RELEASED - type: BAMM - version: 2.0.0 - - urn: urn:bamm:io.catenax.serial_part:1.0.1#SerialPart - name: SerialPart - status: RELEASED - type: BAMM - version: 1.0.1 schemas: AdministrativeInformation: type: object @@ -1549,6 +1577,33 @@ components: type: string version: type: string + AspectModel: + type: object + additionalProperties: false + properties: + name: + type: string + status: + type: string + type: + type: string + urn: + type: string + version: + type: string + AspectModels: + type: object + additionalProperties: false + example: |- + {"lastUpdated"="2023-02-13T08:18:11.990659500Z", "models"=[{"name"="SingleLevelBomAsBuilt", "status"="RELEASED", "type"="BAMM", "urn"="urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt", "version"="1.0.0"}, + {"name"="SerialPart", "status"="RELEASED", "type"="BAMM", "urn"="urn:bamm:io.catenax.serial_part:1.0.0#SerialPart", "version"="1.0.0"}]} + properties: + lastUpdated: + type: string + models: + type: array + items: + $ref: '#/components/schemas/AspectModel' AssetAdministrationShellDescriptor: type: object additionalProperties: false @@ -1617,6 +1672,11 @@ components: type: object additionalProperties: false description: BatchOrderAck Payload Response. + example: "{\"batchChecksum\"=1, \"batches\"=[{\"batchId\"=\"f253718e-a270-4367-901b-9d50d9bd8462\"\ + , \"batchNumber\"=1, \"batchProcessingState\"=\"PARTIAL\", \"batchUrl\"=\"\ + https://../irs/orders/f253718e-a270-4367-901b-9d50d9bd8462/batches/f253718e-a270-4367-901b-9d50d9bd8462\"\ + , \"jobsInBatchChecksum\"=1}], \"orderId\"=\"f253718e-a270-4367-901b-9d50d9bd8462\"\ + , \"state\"=\"COMPLETED\"}" properties: batchChecksum: type: integer @@ -1639,25 +1699,21 @@ components: type: string description: The state of the order. enum: - - INITIALIZED - - COMPLETED - - PROCESSING - - PARTIAL - - ERROR - example: - batchChecksum: 1 - batches: - - batchId: f253718e-a270-4367-901b-9d50d9bd8462 - batchNumber: 1 - batchProcessingState: PARTIAL - batchUrl: https://../irs/orders/f253718e-a270-4367-901b-9d50d9bd8462/batches/f253718e-a270-4367-901b-9d50d9bd8462 - jobsInBatchChecksum: 1 - orderId: f253718e-a270-4367-901b-9d50d9bd8462 - state: COMPLETED + - INITIALIZED + - COMPLETED + - PROCESSING + - PARTIAL + - ERROR BatchResponse: type: object additionalProperties: false description: Batch model. + example: "{\"batchId\"=\"f253718e-a270-4367-901b-9d50d9bd8462\", \"batchNumber\"\ + =1, \"batchProcessingState\"=\"COMPLETED\", \"batchTotal\"=1, \"completedOn\"\ + =\"2022-02-03T14:48:54.709Z\", \"jobs\"=[{\"completedOn\"=\"2022-02-03T14:48:54.709Z\"\ + , \"id\"=\"6c311d29-5753-46d4-b32c-19b918ea93b0\", \"startedOn\"=\"2022-02-03T14:48:54.709Z\"\ + , \"state\"=\"COMPLETED\"}], \"jobsInBatchChecksum\"=1, \"orderId\"=\"f253718e-a270-4367-901b-9d50d9bd8462\"\ + , \"startedOn\"=\"2022-02-03T14:48:54.709Z\", \"totalJobs\"=1}" properties: batchId: type: string @@ -1674,11 +1730,11 @@ components: type: string description: The state of the batch. enum: - - INITIALIZED - - COMPLETED - - PROCESSING - - PARTIAL - - ERROR + - INITIALIZED + - COMPLETED + - PROCESSING + - PARTIAL + - ERROR batchTotal: type: integer format: int32 @@ -1710,21 +1766,6 @@ components: type: integer format: int32 description: Total amount of jobs inside the order. - example: - batchId: f253718e-a270-4367-901b-9d50d9bd8462 - batchNumber: 1 - batchProcessingState: COMPLETED - batchTotal: 1 - completedOn: '2022-02-03T14:48:54.709Z' - jobs: - - completedOn: '2022-02-03T14:48:54.709Z' - id: 6c311d29-5753-46d4-b32c-19b918ea93b0 - startedOn: '2022-02-03T14:48:54.709Z' - state: COMPLETED - jobsInBatchChecksum: 1 - orderId: f253718e-a270-4367-901b-9d50d9bd8462 - startedOn: '2022-02-03T14:48:54.709Z' - totalJobs: 1 Bpn: type: object additionalProperties: false @@ -1736,30 +1777,6 @@ components: manufacturerName: type: string example: OEM A - Constraint: - type: object - additionalProperties: false - properties: - leftOperand: - type: string - example: string - 'odrl:rightOperand': - type: string - example: string - operator: - $ref: '#/components/schemas/Operator' - Constraints: - type: object - additionalProperties: false - properties: - and: - type: array - items: - $ref: '#/components/schemas/Constraint' - or: - type: array - items: - $ref: '#/components/schemas/Constraint' CreatePoliciesResponse: type: object additionalProperties: false @@ -1781,47 +1798,51 @@ components: example: BPNL1234567890AB pattern: "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}" payload: - type: array - items: - $ref: '#/components/schemas/JsonObject' + type: object + additionalProperties: + $ref: '#/components/schemas/JsonValue' + description: The policy payload. example: - payload: - '@context': - odrl: http://www.w3.org/ns/odrl/2/ - '@id': policy-id - policy: - 'odrl:permission': - - 'odrl:action': USE - 'odrl:constraint': - 'odrl:and': - - 'odrl:leftOperand': Membership - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': active - - 'odrl:leftOperand': PURPOSE - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': ID 3.1 Trace - validUntil: '2025-12-12T23:59:59.999Z' + '@context': + odrl: http://www.w3.org/ns/odrl/2/ + '@id': policy-id + '@type': PolicyDefinitionRequestDto + policy: + '@type': Policy + odrl:permission: + - odrl:action: USE + odrl:constraint: + odrl:and: + - odrl:leftOperand: Membership + odrl:operator: + '@id': odrl:eq + odrl:rightOperand: active + - odrl:leftOperand: PURPOSE + odrl:operator: + '@id': odrl:eq + odrl:rightOperand: ID 3.1 Trace + properties: + empty: + type: boolean + valueType: + type: string + enum: + - ARRAY + - OBJECT + - STRING + - NUMBER + - "TRUE" + - "FALSE" + - "NULL" validUntil: type: string format: date-time - description: Timestamp after which the policy will no longer be accepted in negotiations. - example: '2025-12-12T23:59:59.999Z' - required: - - payload - - validUntil - EdcNotificationResponseNotificationContent: - type: object - additionalProperties: false - properties: - content: - $ref: '#/components/schemas/ResponseNotificationContent' - header: - $ref: '#/components/schemas/EdcNotificationHeader' + description: Timestamp after which the policy will no longer be accepted + in negotiations. + example: 2025-12-12T23:59:59.999Z required: - - content - - header + - payload + - validUntil EdcNotificationHeader: type: object additionalProperties: false @@ -1844,10 +1865,21 @@ components: senderEdc: type: string required: - - notificationId - - notificationType - - recipientBpn - - senderBpn + - notificationId + - notificationType + - recipientBpn + - senderBpn + EdcNotificationResponseNotificationContent: + type: object + additionalProperties: false + properties: + content: + $ref: '#/components/schemas/ResponseNotificationContent' + header: + $ref: '#/components/schemas/EdcNotificationHeader' + required: + - content + - header Endpoint: type: object additionalProperties: false @@ -1875,79 +1907,81 @@ components: type: string description: Error code. enum: - - 100 CONTINUE - - 101 SWITCHING_PROTOCOLS - - 102 PROCESSING - - 103 EARLY_HINTS - - 103 CHECKPOINT - - 200 OK - - 201 CREATED - - 202 ACCEPTED - - 203 NON_AUTHORITATIVE_INFORMATION - - 204 NO_CONTENT - - 205 RESET_CONTENT - - 206 PARTIAL_CONTENT - - 207 MULTI_STATUS - - 208 ALREADY_REPORTED - - 226 IM_USED - - 300 MULTIPLE_CHOICES - - 301 MOVED_PERMANENTLY - - 302 FOUND - - 302 MOVED_TEMPORARILY - - 303 SEE_OTHER - - 304 NOT_MODIFIED - - 305 USE_PROXY - - 307 TEMPORARY_REDIRECT - - 308 PERMANENT_REDIRECT - - 400 BAD_REQUEST - - 401 UNAUTHORIZED - - 402 PAYMENT_REQUIRED - - 403 FORBIDDEN - - 404 NOT_FOUND - - 405 METHOD_NOT_ALLOWED - - 406 NOT_ACCEPTABLE - - 407 PROXY_AUTHENTICATION_REQUIRED - - 408 REQUEST_TIMEOUT - - 409 CONFLICT - - 410 GONE - - 411 LENGTH_REQUIRED - - 412 PRECONDITION_FAILED - - 413 PAYLOAD_TOO_LARGE - - 413 REQUEST_ENTITY_TOO_LARGE - - 414 URI_TOO_LONG - - 414 REQUEST_URI_TOO_LONG - - 415 UNSUPPORTED_MEDIA_TYPE - - 416 REQUESTED_RANGE_NOT_SATISFIABLE - - 417 EXPECTATION_FAILED - - 418 I_AM_A_TEAPOT - - 419 INSUFFICIENT_SPACE_ON_RESOURCE - - 420 METHOD_FAILURE - - 421 DESTINATION_LOCKED - - 422 UNPROCESSABLE_ENTITY - - 423 LOCKED - - 424 FAILED_DEPENDENCY - - 425 TOO_EARLY - - 426 UPGRADE_REQUIRED - - 428 PRECONDITION_REQUIRED - - 429 TOO_MANY_REQUESTS - - 431 REQUEST_HEADER_FIELDS_TOO_LARGE - - 451 UNAVAILABLE_FOR_LEGAL_REASONS - - 500 INTERNAL_SERVER_ERROR - - 501 NOT_IMPLEMENTED - - 502 BAD_GATEWAY - - 503 SERVICE_UNAVAILABLE - - 504 GATEWAY_TIMEOUT - - 505 HTTP_VERSION_NOT_SUPPORTED - - 506 VARIANT_ALSO_NEGOTIATES - - 507 INSUFFICIENT_STORAGE - - 508 LOOP_DETECTED - - 509 BANDWIDTH_LIMIT_EXCEEDED - - 510 NOT_EXTENDED - - 511 NETWORK_AUTHENTICATION_REQUIRED + - 100 CONTINUE + - 101 SWITCHING_PROTOCOLS + - 102 PROCESSING + - 103 EARLY_HINTS + - 103 CHECKPOINT + - 200 OK + - 201 CREATED + - 202 ACCEPTED + - 203 NON_AUTHORITATIVE_INFORMATION + - 204 NO_CONTENT + - 205 RESET_CONTENT + - 206 PARTIAL_CONTENT + - 207 MULTI_STATUS + - 208 ALREADY_REPORTED + - 226 IM_USED + - 300 MULTIPLE_CHOICES + - 301 MOVED_PERMANENTLY + - 302 FOUND + - 302 MOVED_TEMPORARILY + - 303 SEE_OTHER + - 304 NOT_MODIFIED + - 305 USE_PROXY + - 307 TEMPORARY_REDIRECT + - 308 PERMANENT_REDIRECT + - 400 BAD_REQUEST + - 401 UNAUTHORIZED + - 402 PAYMENT_REQUIRED + - 403 FORBIDDEN + - 404 NOT_FOUND + - 405 METHOD_NOT_ALLOWED + - 406 NOT_ACCEPTABLE + - 407 PROXY_AUTHENTICATION_REQUIRED + - 408 REQUEST_TIMEOUT + - 409 CONFLICT + - 410 GONE + - 411 LENGTH_REQUIRED + - 412 PRECONDITION_FAILED + - 413 PAYLOAD_TOO_LARGE + - 413 REQUEST_ENTITY_TOO_LARGE + - 414 URI_TOO_LONG + - 414 REQUEST_URI_TOO_LONG + - 415 UNSUPPORTED_MEDIA_TYPE + - 416 REQUESTED_RANGE_NOT_SATISFIABLE + - 417 EXPECTATION_FAILED + - 418 I_AM_A_TEAPOT + - 419 INSUFFICIENT_SPACE_ON_RESOURCE + - 420 METHOD_FAILURE + - 421 DESTINATION_LOCKED + - 422 UNPROCESSABLE_ENTITY + - 423 LOCKED + - 424 FAILED_DEPENDENCY + - 425 TOO_EARLY + - 426 UPGRADE_REQUIRED + - 428 PRECONDITION_REQUIRED + - 429 TOO_MANY_REQUESTS + - 431 REQUEST_HEADER_FIELDS_TOO_LARGE + - 451 UNAVAILABLE_FOR_LEGAL_REASONS + - 500 INTERNAL_SERVER_ERROR + - 501 NOT_IMPLEMENTED + - 502 BAD_GATEWAY + - 503 SERVICE_UNAVAILABLE + - 504 GATEWAY_TIMEOUT + - 505 HTTP_VERSION_NOT_SUPPORTED + - 506 VARIANT_ALSO_NEGOTIATES + - 507 INSUFFICIENT_STORAGE + - 508 LOOP_DETECTED + - 509 BANDWIDTH_LIMIT_EXCEEDED + - 510 NOT_EXTENDED + - 511 NETWORK_AUTHENTICATION_REQUIRED IdentifierKeyValuePair: type: object additionalProperties: false properties: + externalSubjectId: + $ref: '#/components/schemas/Reference' name: type: string example: engineserialid @@ -1955,8 +1989,6 @@ components: $ref: '#/components/schemas/Reference' subjectId: $ref: '#/components/schemas/Reference' - externalSubjectId: - $ref: '#/components/schemas/Reference' value: type: string example: "12309481209312" @@ -1985,8 +2017,8 @@ components: id: type: string format: uuid - example: e5347c88-a921-11ec-b909-0242ac120002 description: Id of the job. + example: e5347c88-a921-11ec-b909-0242ac120002 maxLength: 36 minLength: 36 pattern: "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i" @@ -2002,21 +2034,21 @@ components: example: 2022-02-03T14:48:54.709Z state: type: string - example: COMPLETED enum: - - UNSAVED - - INITIAL - - RUNNING - - TRANSFERS_FINISHED - - COMPLETED - - CANCELED - - ERROR + - UNSAVED + - INITIAL + - RUNNING + - TRANSFERS_FINISHED + - COMPLETED + - CANCELED + - ERROR + example: COMPLETED summary: $ref: '#/components/schemas/Summary' required: - - globalAssetId - - id - - state + - globalAssetId + - id + - state JobErrorDetails: type: object additionalProperties: false @@ -2024,8 +2056,8 @@ components: properties: errorDetail: type: string - example: Timeout while requesting Digital Registry description: Detailed exception information. + example: Timeout while requesting Digital Registry maxLength: 4000 exception: type: string @@ -2062,19 +2094,19 @@ components: example: false bomLifecycle: type: string - example: asBuilt description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified + example: asBuilt bpn: type: string example: BPNL00000003AYRE callbackUrl: type: string - example: https://hostname.com/callback?id={id}&state={state} + example: "https://hostname.com/callback?id={id}&state={state}" collectAspects: type: boolean example: false @@ -2086,11 +2118,11 @@ components: minimum: 0 direction: type: string - example: upward description: Item graph traversal direction. enum: - - upward - - downward + - upward + - downward + example: upward lookupBPNs: type: boolean example: false @@ -2110,131 +2142,20 @@ components: state: type: string enum: - - UNSAVED - - INITIAL - - RUNNING - - TRANSFERS_FINISHED - - COMPLETED - - CANCELED - - ERROR + - UNSAVED + - INITIAL + - RUNNING + - TRANSFERS_FINISHED + - COMPLETED + - CANCELED + - ERROR Jobs: type: object additionalProperties: false description: Container for a job with item graph. - example: - bpns: - - manufacturerId: BPNL00000003AAXX - manufacturerName: AB CD - job: - completedOn: '2022-02-03T14:48:54.709Z' - createdOn: '2022-02-03T14:48:54.709Z' - exception: - errorDetail: Timeout while requesting Digital Registry - exception: IrsTimeoutException - exceptionDate: '2022-02-03T14:48:54.709Z' - globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 - id: e5347c88-a921-11ec-b909-0242ac120002 - lastModifiedOn: '2022-02-03T14:48:54.709Z' - parameter: - aspects: - - SerialPart - - AddressAspect - auditContractNegotiation: false - bomLifecycle: asBuilt - collectAspects: false - depth: 1 - direction: downward - lookupBPNs: false - startedOn: '2022-02-03T14:48:54.709Z' - state: COMPLETED - summary: - asyncFetchedItems: - completed: 3 - failed: 0 - running: 0 - bpnLookups: - completed: 3 - failed: 0 - relationships: - - catenaXId: urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447 - linkedItem: - assembledOn: '2022-02-03T14:48:54.709Z' - childCatenaXId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 - hasAlternatives: false - lastModifiedOn: '2022-02-03T14:48:54.709Z' - lifecycleContext: asBuilt - quantity: - measurementUnit: - datatypeURI: urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece - lexicalValue: piece - quantityNumber: 1 - shells: - - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 - payload: - description: - - language: en - text: The shell for a vehicle - globalAssetId: urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9 - id: urn:uuid:882fc530-b69b-4707-95f6-5dbc5e9baaa8 - idShort: future concept x - specificAssetIds: - - name: engineserialid - value: '12309481209312' - submodelDescriptors: - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: - - '1.0' - href: https://catena-x.net/vehicle/basedetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d - idShort: SingleLevelBomAsPlanned - semanticId: - keys: - - type: ExternalReference - value: urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned - type: ModelReference - - description: - - language: en - text: Provides base vehicle information - endpoints: - - interface: HTTP - protocolInformation: - endpointProtocol: HTTPS - endpointProtocolVersion: - - '1.0' - href: https://catena-x.net/vehicle/partdetails/ - subprotocol: DSP - subprotocolBody: id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net - subprotocolBodyEncoding: plain - id: urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90 - idShort: vehicle part details - semanticId: - keys: - - type: Submodel - value: urn:bamm:com.catenax.vehicle:0.1.1#PartDetails - type: ModelReference - submodels: - - aspectType: supply_chain_impacted - contractAgreementId: f253718e-a270-4367-901b-9d50d9bd8462 - identification: urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff - payload: - supplyChainImpacted: 'YES' - tombstones: - - catenaXId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 - endpointURL: https://catena-x.net/vehicle/partdetails/ - processingError: - errorDetail: Details to reason of failure - lastAttempt: '2022-02-03T14:48:54.709Z' - processStep: SchemaValidation - retryCounter: 0 + example: |- + {"bpns"=[{"manufacturerId"="BPNL00000003AAXX", "manufacturerName"="AB CD"}], "job"={"completedOn"="2022-02-03T14:48:54.709Z", "createdOn"="2022-02-03T14:48:54.709Z", "exception"={"errorDetail"="Timeout while requesting Digital Registry", "exception"="IrsTimeoutException", "exceptionDate"="2022-02-03T14:48:54.709Z"}, "globalAssetId"="urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0", "id"="e5347c88-a921-11ec-b909-0242ac120002", "lastModifiedOn"="2022-02-03T14:48:54.709Z", "parameter"={"aspects"=["SerialPart", "AddressAspect"], "auditContractNegotiation"=false, "bomLifecycle"="asBuilt", "collectAspects"=false, "depth"=1, "direction"="downward", "lookupBPNs"=false}, "startedOn"="2022-02-03T14:48:54.709Z", "state"="COMPLETED", "summary"={"asyncFetchedItems"={"completed"=3, "failed"=0, "running"=0}, "bpnLookups"={"completed"=3, "failed"=0}}}, "relationships"=[{"catenaXId"="urn:uuid:d9bec1c6-e47c-4d18-ba41-0a5fe8b7f447", "linkedItem"={"assembledOn"="2022-02-03T14:48:54.709Z", "childCatenaXId"="urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9", "hasAlternatives"=false, "lastModifiedOn"="2022-02-03T14:48:54.709Z", "lifecycleContext"="asBuilt", "quantity"={"measurementUnit"={"datatypeURI"="urn:bamm:io.openmanufacturing:meta-model:1.0.0#piece", "lexicalValue"="piece"}, "quantityNumber"=1}}}], "shells"=[{"contractAgreementId"="f253718e-a270-4367-901b-9d50d9bd8462", "payload"={"description"=[{"language"="en", "text"="The shell for a vehicle"}], "globalAssetId"="urn:uuid:a45a2246-f6e1-42da-b47d-5c3b58ed62e9", "id"="urn:uuid:882fc530-b69b-4707-95f6-5dbc5e9baaa8", "idShort"="future concept x", "specificAssetIds"=[{"name"="engineserialid", "value"="12309481209312"}], "submodelDescriptors"=[{"description"=[{"language"="en", "text"="Provides base vehicle information"}], "endpoints"=[{"interface"="HTTP", "protocolInformation"={"endpointProtocol"="HTTPS", "endpointProtocolVersion"=["1.0"], "href"="https://catena-x.net/vehicle/basedetails/", "subprotocol"="DSP", "subprotocolBody"="id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net", "subprotocolBodyEncoding"="plain"}}], "id"="urn:uuid:5d25a897-6571-4800-b98c-a3352fbf996d", "idShort"="SingleLevelBomAsPlanned", "semanticId"={"keys"=[{"type"="ExternalReference", "value"="urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned"}], "type"="ModelReference"}}, + {"description"=[{"language"="en", "text"="Provides base vehicle information"}], "endpoints"=[{"interface"="HTTP", "protocolInformation"={"endpointProtocol"="HTTPS", "endpointProtocolVersion"=["1.0"], "href"="https://catena-x.net/vehicle/partdetails/", "subprotocol"="DSP", "subprotocolBody"="id=urn:uuid:c8159379-4613-48b8-ad52-6baed7afe923;dspEndpoint=https://irs-provider-controlplane3.dev.demo.catena-x.net", "subprotocolBodyEncoding"="plain"}}], "id"="urn:uuid:dae4d249-6d66-4818-b576-bf52f3b9ae90", "idShort"="vehicle part details", "semanticId"={"keys"=[{"type"="Submodel", "value"="urn:bamm:com.catenax.vehicle:0.1.1#PartDetails"}], "type"="ModelReference"}}]}}], "submodels"=[{"aspectType"="supply_chain_impacted", "contractAgreementId"="f253718e-a270-4367-901b-9d50d9bd8462", "identification"="urn:uuid:fc784d2a-5506-4e61-8e34-21600f8cdeff", "payload"={"supplyChainImpacted"="YES"}}], "tombstones"=[{"catenaXId"="urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0", "endpointURL"="https://catena-x.net/vehicle/partdetails/", "processingError"={"errorDetail"="Details to reason of failure", "lastAttempt"="2022-02-03T14:48:54.709Z", "processStep"="SchemaValidation", "retryCounter"=0}}]} properties: bpns: type: array @@ -2270,74 +2191,40 @@ components: items: $ref: '#/components/schemas/Tombstone' maxItems: 2147483647 - JsonObject: - type: object - additionalProperties: false - properties: - valueType: - type: string - enum: - - 'ARRAY' - - 'OBJECT' - - 'STRING' - - 'NUMBER' - - 'TRUE' - - 'FALSE' - - 'NULL' - empty: - type: boolean - example: - payload: - '@context': - odrl: http://www.w3.org/ns/odrl/2/ - '@id': policy-id - policy: - 'odrl:permission': - - 'odrl:action': USE - 'odrl:constraint': - 'odrl:and': - - 'odrl:leftOperand': Membership - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': active - - 'odrl:leftOperand': PURPOSE - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': ID 3.1 Trace - validUntil: '2025-12-12T23:59:59.999Z' JsonValue: type: object additionalProperties: false + description: The policy payload. + example: + '@context': + odrl: http://www.w3.org/ns/odrl/2/ + '@id': policy-id + '@type': PolicyDefinitionRequestDto + policy: + '@type': Policy + odrl:permission: + - odrl:action: USE + odrl:constraint: + odrl:and: + - odrl:leftOperand: Membership + odrl:operator: + '@id': odrl:eq + odrl:rightOperand: active + - odrl:leftOperand: PURPOSE + odrl:operator: + '@id': odrl:eq + odrl:rightOperand: ID 3.1 Trace properties: valueType: type: string enum: - - 'ARRAY' - - 'OBJECT' - - 'STRING' - - 'NUMBER' - - 'TRUE' - - 'FALSE' - - 'NULL' - example: - payload: - '@context': - odrl: http://www.w3.org/ns/odrl/2/ - '@id': policy-id - policy: - 'odrl:permission': - - 'odrl:action': USE - 'odrl:constraint': - 'odrl:and': - - 'odrl:leftOperand': Membership - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': active - - 'odrl:leftOperand': PURPOSE - 'odrl:operator': - '@id': 'odrl:eq' - 'odrl:rightOperand': ID 3.1 Trace - validUntil: '2025-12-12T23:59:59.999Z' + - ARRAY + - OBJECT + - STRING + - NUMBER + - "TRUE" + - "FALSE" + - "NULL" LangString: type: object additionalProperties: false @@ -2380,9 +2267,9 @@ components: description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified example: asBuilt quantity: $ref: '#/components/schemas/Quantity' @@ -2396,40 +2283,12 @@ components: lexicalValue: type: string example: piece - Operator: - type: object - additionalProperties: false - properties: - '@id': - type: string - example: 'odrl:eq' - enum: - - eq - - neq - - lt - - gt - - in - - lteq - - gteq - - isA - - hasPart - - isPartOf - - isOneOf - - isAllOf - - isNoneOf PageResult: type: object additionalProperties: false - example: - pageCount: 0 - pageNumber: 6 - pageSize: 1 - content: - - completedOn: test - id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 - startedOn: 2000-01-23T04:56:07.000+00:00 - state: UNSAVED - totalElements: 5 + example: "{\"content\"=[{\"completedOn\"=\"test\", \"id\"=\"046b6c7f-0b8a-43b9-b35d-6489e6daee91\"\ + , \"startedOn\"=\"2000-01-23T04:56:07.000+00:00\", \"state\"=\"UNSAVED\"}],\ + \ \"pageCount\"=0, \"pageNumber\"=6, \"pageSize\"=1, \"totalElements\"=5}" properties: content: type: array @@ -2459,7 +2318,6 @@ components: example: BPNL0123456789XX maxLength: 16 minLength: 16 - #pattern: "^(BPN)(L|S|A)(\\d{10})([a-zA-Z0-9]{2})$" globalAssetId: type: string description: Id of global asset. @@ -2468,54 +2326,8 @@ components: minLength: 45 pattern: "^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}$" required: - - bpn - - globalAssetId - Permission: - type: object - additionalProperties: false - properties: - action: - type: string - example: USE - enum: - - ACCESS - - USE - constraint: - $ref: '#/components/schemas/Constraints' - Policy: - example: - createdOn: '2024-03-08T15:19:41.006Z' - permissions: - - action: USE - constraint: - and: - - leftOperand: string - odrl:rightOperand: string - operator: - "@id": odrl:eq - or: - - leftOperand: string - odrl:rightOperand: string - operator: - "@id": odrl:eq - policyId: f253718e-a270-4367-901b-9d50d9bd8462 - validUntil: '2024-03-08T15:19:41.006Z' - type: object - additionalProperties: false - properties: - createdOn: - type: string - format: date-time - permissions: - type: array - items: - $ref: '#/components/schemas/Permission' - policyId: - type: string - example: f253718e-a270-4367-901b-9d50d9bd8462 - validUntil: - type: string - format: date-time + - bpn + - globalAssetId ProcessingError: type: object additionalProperties: false @@ -2528,14 +2340,14 @@ components: processStep: type: string enum: - - SubmodelRequest - - DigitalTwinRequest - - SchemaValidation - - SchemaRequest - - BpdmRequest - - BpdmValidation - - UsagePolicyValidation - - EssValidation + - SubmodelRequest + - DigitalTwinRequest + - SchemaValidation + - SchemaRequest + - BpdmRequest + - BpdmValidation + - UsagePolicyValidation + - EssValidation retryCounter: type: integer format: int32 @@ -2545,28 +2357,29 @@ components: type: object additionalProperties: false properties: - href: - example: https://edc.data.plane/{path}/submodel - type: string endpointProtocol: - example: HTTPS type: string + example: HTTPS endpointProtocolVersion: type: array - example: ["1.0"] + example: + - "1.0" items: type: string - subprotocol: - type: string - subprotocolBody: - type: string - subprotocolBodyEncoding: + href: type: string + example: "https://edc.data.plane/{path}/submodel" securityAttributes: type: array items: $ref: '#/components/schemas/SecurityAttribute' maxItems: 2147483647 + subprotocol: + type: string + subprotocolBody: + type: string + subprotocolBodyEncoding: + type: string Quantity: type: object additionalProperties: false @@ -2576,21 +2389,21 @@ components: $ref: '#/components/schemas/MeasurementUnit' quantityNumber: type: number - example: 1.0 format: double + example: 1.0 maximum: 2147483647 minimum: 0 Reference: type: object additionalProperties: false properties: - type: - type: string keys: type: array items: $ref: '#/components/schemas/SemanticId' maxItems: 2147483647 + type: + type: string RegisterBatchOrder: type: object additionalProperties: false @@ -2604,9 +2417,9 @@ components: - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt items: type: string - pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ + pattern: "^(urn:[bs]amm:.*\\d\\.\\d\\.\\d)?(#)?(\\w+)?$" maxItems: 2147483647 - pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ + pattern: "^(urn:[bs]amm:.*\\d\\.\\d\\.\\d)?(#)?(\\w+)?$" batchSize: type: integer format: int32 @@ -2618,17 +2431,17 @@ components: type: string description: The strategy how the batch is processed internally in IRS. enum: - - PRESERVE_BATCH_JOB_ORDER - - PRESERVE_JOB_ORDER - - PRESERVE_BATCH_ORDER + - PRESERVE_BATCH_JOB_ORDER + - PRESERVE_JOB_ORDER + - PRESERVE_BATCH_ORDER bomLifecycle: type: string description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified callbackUrl: type: string description: "Callback url to notify requestor when job processing is finished.\ @@ -2651,8 +2464,8 @@ components: default: downward description: Item graph traversal direction. enum: - - upward - - downward + - upward + - downward jobTimeout: type: integer format: int32 @@ -2678,7 +2491,7 @@ components: maximum: 86400 minimum: 60 required: - - keys + - keys RegisterBpnInvestigationBatchOrder: type: object additionalProperties: false @@ -2696,22 +2509,22 @@ components: type: string description: The strategy how the batch is processed internally in IRS. enum: - - PRESERVE_BATCH_JOB_ORDER - - PRESERVE_JOB_ORDER - - PRESERVE_BATCH_ORDER + - PRESERVE_BATCH_JOB_ORDER + - PRESERVE_JOB_ORDER + - PRESERVE_BATCH_ORDER bomLifecycle: type: string description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified callbackUrl: type: string description: "Callback url to notify requestor when job processing is finished.\ - \ There are four uri variable placeholders that can be used: orderId,\ - \ batchId, orderState and batchState." + \ There are four uri variable placeholders that can be used: orderId,\ + \ batchId, orderState and batchState." example: "https://hostname.com/callback?orderId={orderId}&batchId={batchId}&orderState={orderState}&batchState={batchState}" incidentBPNSs: type: array @@ -2740,8 +2553,8 @@ components: maximum: 86400 minimum: 60 required: - - incidentBPNSs - - keys + - incidentBPNSs + - keys RegisterBpnInvestigationJob: type: object additionalProperties: false @@ -2752,9 +2565,9 @@ components: description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified example: asPlanned callbackUrl: type: string @@ -2762,8 +2575,6 @@ components: \ There are two uri variable placeholders that can be used: jobId and\ \ jobState." example: "https://hostname.com/callback?jobId={jobId}&jobState={jobState}" - key: - $ref: '#/components/schemas/PartChainIdentificationKey' incidentBPNSs: type: array description: Array of BPNS numbers. @@ -2774,9 +2585,11 @@ components: pattern: "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}" maxItems: 2147483647 pattern: "(BPN)[LSA][\\w\\d]{10}[\\w\\d]{2}" + key: + $ref: '#/components/schemas/PartChainIdentificationKey' required: - - incidentBPNSs - - key + - incidentBPNSs + - key RegisterJob: type: object additionalProperties: false @@ -2790,21 +2603,22 @@ components: - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt items: type: string - pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ + pattern: "^(urn:[bs]amm:.*\\d\\.\\d\\.\\d)?(#)?(\\w+)?$" maxItems: 2147483647 - pattern: ^(urn:[bs]amm:.*\d\.\d\.\d)?(#)?(\w+)?$ + pattern: "^(urn:[bs]amm:.*\\d\\.\\d\\.\\d)?(#)?(\\w+)?$" auditContractNegotiation: type: boolean - description: Flag enables and disables auditing, including provisioning - of ContractAgreementId inside submodels and shells objects. Default is true. + description: "Flag enables and disables auditing, including provisioning\ + \ of ContractAgreementId inside submodels and shells objects. Default\ + \ is true." bomLifecycle: type: string description: The lifecycle context in which the child part was assembled into the parent part. enum: - - asBuilt - - asPlanned - - asSpecified + - asBuilt + - asPlanned + - asSpecified callbackUrl: type: string description: "Callback url to notify requestor when job processing is finished.\ @@ -2826,8 +2640,8 @@ components: default: downward description: Item graph traversal direction. enum: - - upward - - downward + - upward + - downward key: $ref: '#/components/schemas/PartChainIdentificationKey' lookupBPNs: @@ -2835,7 +2649,7 @@ components: description: Flag to specify whether BPNs should be collected and resolved via the configured BPDM URL. Default is false. required: - - key + - key Relationship: type: object additionalProperties: false @@ -2860,33 +2674,33 @@ components: type: object additionalProperties: false properties: + bpn: + type: string hops: type: integer format: int32 - bpn: - type: string result: type: string - SemanticId: + SecurityAttribute: type: object additionalProperties: false properties: + key: + type: string type: type: string - example: urn:bamm:com.catenax.vehicle:0.1.1 value: type: string - example: Submodel - SecurityAttribute: + SemanticId: type: object additionalProperties: false properties: type: type: string - key: - type: string + example: urn:bamm:com.catenax.vehicle:0.1.1 value: type: string + example: Submodel Shell: type: object additionalProperties: false @@ -2964,43 +2778,6 @@ components: type: object processingError: $ref: '#/components/schemas/ProcessingError' - AspectModel: - type: object - additionalProperties: false - properties: - name: - type: string - status: - type: string - type: - type: string - urn: - type: string - version: - type: string - AspectModels: - type: object - additionalProperties: false - example: - lastUpdated: 2023-02-13T08:18:11.990659500Z - models: - - urn: urn:bamm:io.catenax.single_level_bom_as_built:1.0.0#SingleLevelBomAsBuilt - name: SingleLevelBomAsBuilt - type: BAMM - version: 1.0.0 - status: RELEASED - - urn: urn:bamm:io.catenax.serial_part:1.0.0#SerialPart - name: SerialPart - type: BAMM - version: 1.0.0 - status: RELEASED - properties: - lastUpdated: - type: string - models: - type: array - items: - $ref: '#/components/schemas/AspectModel' UpdatePolicyRequest: type: object additionalProperties: false @@ -3024,8 +2801,8 @@ components: description: Timestamp after which the policy will no longer be accepted in negotiations. required: - - policyIds - - validUntil + - policyIds + - validUntil securitySchemes: api_key: description: Api Key access From da16713c67343e47d62d24d06a94f1a0159ecd5e Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 02:04:20 +0200 Subject: [PATCH 65/96] fix(impl): [#199] code formatting --- .../tractusx/irs/IrsApplicationTests.java | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java index c3b0e50fc1..da34d33cc1 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsApplicationTests.java @@ -56,7 +56,9 @@ import org.springframework.test.context.ActiveProfiles; @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT, properties = { "digitalTwinRegistry.type=central" }) -@ActiveProfiles(profiles = { "local", "test" }) +@ActiveProfiles(profiles = { "local", + "test" +}) @Import(TestConfig.class) class IrsApplicationTests { @@ -77,6 +79,7 @@ class IrsApplicationTests { @Test void generatedOpenApiMatchesContract() throws Exception { + final String generatedYaml = this.restTemplate.getForObject("http://localhost:" + port + "/api/api-docs.yaml", String.class); final InputStream definedYaml = Files.newInputStream(Path.of("../docs/src/api/irs-api.yaml")); @@ -87,14 +90,18 @@ void generatedOpenApiMatchesContract() throws Exception { // To correctly display both documentations examples - manual and generated by annotations - // we need to remove verification for some "examples", otherwise one or another won't display correctly - assertThat(generatedYamlMap).usingRecursiveComparison() - .ignoringFields("components.schemas.PageResult.example") - .ignoringFields("components.schemas.AspectModels.example") - .ignoringFields("components.schemas.BatchOrderResponse.example") - .ignoringFields("components.schemas.Jobs.example") - .ignoringFields("components.schemas.Policy") - .ignoringFields("components.schemas.BatchResponse.example") - .isEqualTo(definedYamlMap); + assertThat(generatedYamlMap) + + .usingRecursiveComparison() + + .ignoringFields("components.schemas.PageResult.example") + .ignoringFields("components.schemas.AspectModels.example") + .ignoringFields("components.schemas.BatchOrderResponse.example") + .ignoringFields("components.schemas.Jobs.example") + .ignoringFields("components.schemas.Policy") + .ignoringFields("components.schemas.BatchResponse.example") + + .isEqualTo(definedYamlMap); } @@ -109,7 +116,6 @@ void shouldStoreBlobResultWhenRunningJob() throws Exception { final JobInitiateResponse response = jobOrchestrator.startJob("rootitemid", jobParameter, null); - assertThat(response.getStatus()).isEqualTo(ResponseStatus.OK); Awaitility.await() From 3ba862f18cbd53ed86787224f7ec795a4ee326c6 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 02:48:21 +0200 Subject: [PATCH 66/96] fix(impl): [#199] fix PMD errors --- .../controllers/PolicyStoreController.java | 2 +- .../services/PolicyStoreService.java | 26 +++++++++---------- .../BusinessPartnerNumberListValidator.java | 2 +- .../services/PolicyStoreServiceTest.java | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java index aac16c6448..470f714830 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/controllers/PolicyStoreController.java @@ -144,7 +144,7 @@ public CreatePoliciesResponse registerAllowedPolicy(@Valid @RequestBody final Cr description = "Returns the policies as map of BPN to list of policies.", content = { @Content(mediaType = APPLICATION_JSON_VALUE, examples = @ExampleObject( - value = PolicyResponse.BPN_TO_POLICY_MAP_EXAMPLE), + PolicyResponse.BPN_TO_POLICY_MAP_EXAMPLE), schema = @Schema( description = "Map of BPN to list of policies")) }), diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java index fcd9fbe288..7b9eb684dc 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreService.java @@ -70,6 +70,19 @@ }) public class PolicyStoreService implements AcceptedPoliciesProvider { + private final List allowedPoliciesFromConfig; + + private final PolicyPersistence persistence; + + private final EdcTransformer edcTransformer; + + private final Clock clock; + + private static final String MISSING_REQUEST_FIELD_MESSAGE = + "Request does not contain all required fields. " + "Missing: %s"; + + private static final String DEFAULT = "default"; + /** * Constants for the configured default policy. */ @@ -85,19 +98,6 @@ private static final class ConfiguredDefaultPolicy { public static final int DEFAULT_POLICY_LIFETIME_YEARS = 5; } - private final List allowedPoliciesFromConfig; - - private final PolicyPersistence persistence; - - private final EdcTransformer edcTransformer; - - private final Clock clock; - - private static final String MISSING_REQUEST_FIELD_MESSAGE = - "Request does not contain all required fields. " + "Missing: %s"; - - static final String DEFAULT = "default"; - public PolicyStoreService(final DefaultAcceptedPoliciesConfig defaultAcceptedPoliciesConfig, final PolicyPersistence persistence, final EdcTransformer edcTransformer, final Clock clock) { this.allowedPoliciesFromConfig = createDefaultPolicyFromConfig(defaultAcceptedPoliciesConfig); diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java index ef9a5f4a1d..e143126d07 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/validators/BusinessPartnerNumberListValidator.java @@ -39,7 +39,7 @@ public class BusinessPartnerNumberListValidator private static final Pattern PATTERN = Pattern.compile(BPN_REGEX); @Override - public boolean isValid(List value, ConstraintValidatorContext context) { + public boolean isValid(final List value, final ConstraintValidatorContext context) { // allow null and empty here (in order to allow flexible combination with @NotNull and @NotEmpty) if (value == null || value.isEmpty()) { diff --git a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java index 40bbcf386e..7508a276b9 100644 --- a/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java +++ b/irs-policy-store/src/test/java/org/eclipse/tractusx/irs/policystore/services/PolicyStoreServiceTest.java @@ -317,7 +317,7 @@ void getAcceptedPolicies_whenNoPoliciesAssociatedWithTheGivenBpn_shouldReturnThe // this overrides the configured default policy (see the previous test above) final String defaultPolicyId1 = "registered-default-policy-1"; final String defaultPolicyId2 = "registered-default-policy-2"; - when(persistenceMock.readAll(PolicyStoreService.DEFAULT)).thenReturn(List.of( + when(persistenceMock.readAll("default")).thenReturn(List.of( // default policy 1 createPolicy(defaultPolicyId1), // default policy 2 From 2360dea9c2151f6a2226ce8cf3185a592b2905bd Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 08:56:18 +0200 Subject: [PATCH 67/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java --- .../tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java index fccd653888..e78a394b29 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/AbstractDelegate.java @@ -94,7 +94,7 @@ protected SubmodelDescriptor requestSubmodel(final EdcSubmodelFacade submodelFac final Optional dspEndpoint = extractDspEndpoint(subprotocolBody); if (dspEndpoint.isPresent()) { - log.debug("Using dspEndpoint of subprotocolBody '{}' to get submodel policies", subprotocolBody); + log.debug("Using dspEndpoint of subprotocolBody '{}' to get submodel payload", subprotocolBody); return submodelFacade.getSubmodelPayload(dspEndpoint.get(), digitalTwinRegistryEndpoint.getProtocolInformation().getHref(), extractAssetId(subprotocolBody), bpn); From d4077c974277c9379710d95467dc0bd87e9ef3c8 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 08:56:53 +0200 Subject: [PATCH 68/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java --- .../irs/aaswrapper/job/delegate/RelationshipDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java index 9f10710756..c3f15222ea 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java @@ -127,7 +127,7 @@ private void processEndpoint(final Endpoint endpoint, final RelationshipAspect r Tombstone.from(itemId.getGlobalAssetId(), endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SUBMODEL_REQUEST)); } catch (final JsonParseException e) { - log.info("Submodel policies did not match the expected AspectType. Creating Tombstone."); + log.info("Submodel payload did not match the expected AspectType. Creating Tombstone."); itemContainerBuilder.tombstone( Tombstone.from(itemId.getGlobalAssetId(), endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SUBMODEL_REQUEST)); From 6520bf93153a7f1cd33cff63636a888c6a3cfcce Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 08:57:39 +0200 Subject: [PATCH 69/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java --- .../tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java index 9e9764cadb..594a0252da 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java @@ -134,7 +134,7 @@ private List getSubmodels(final SubmodelDescriptor submodelDescriptor, } else { final String errors = String.join(", ", validationResult.getValidationErrors()); itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), - new IllegalArgumentException("Submodel policies validation failed. " + errors), 0, + new IllegalArgumentException("Submodel payload validation failed. " + errors), 0, ProcessStep.SCHEMA_VALIDATION)); } } catch (final JsonParseException e) { From 7f96e04dfed16e610baeacc3c65ee6e7d9221f30 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 08:58:14 +0200 Subject: [PATCH 70/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java --- .../tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java index 594a0252da..8505e2df2f 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java @@ -140,7 +140,7 @@ private List getSubmodels(final SubmodelDescriptor submodelDescriptor, } catch (final JsonParseException e) { itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, RetryRegistry.ofDefaults().getDefaultConfig().getMaxAttempts(), ProcessStep.SCHEMA_VALIDATION)); - log.info("Submodel policies did not match the expected AspectType. Creating Tombstone."); + log.info("Submodel payload did not match the expected AspectType. Creating Tombstone."); } catch (final SchemaNotFoundException | InvalidSchemaException | RestClientException e) { itemContainerBuilder.tombstone(Tombstone.from(itemId, endpoint.getProtocolInformation().getHref(), e, 0, ProcessStep.SCHEMA_REQUEST)); From dec6f5be2b46decee9dec3a2d7d5935b6374299e Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 08:59:21 +0200 Subject: [PATCH 71/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java --- .../tractusx/irs/services/validation/JsonValidatorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index 756f49fa63..1649354231 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -74,7 +74,7 @@ public ValidationResult validate(final String jsonSchema, final String jsonPaylo return createValidationResult(errors); } catch (final IllegalStateException | JsonParseException e) { - log.warn("Unable to validate JSON policies ({})", jsonPayload, e); + log.warn("Unable to validate JSON payload ({})", jsonPayload, e); return ValidationResult.builder() .valid(false) .validationError("Illegal JSON policies, cannot be validated") From d376a7bee96865867bb0facec66db71f4debce4f Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 09:00:58 +0200 Subject: [PATCH 72/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java --- .../tractusx/irs/services/validation/JsonValidatorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index 1649354231..3b09ae01ee 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -54,7 +54,7 @@ public JsonValidatorService(final JsonUtil parser) { } /** - * Validate the policies against the schema. + * Validate the payload against the schema. * * @param jsonSchema the JSON schema * @param jsonPayload the JSON policies to validate From a0d3ea6ba7a1fbc66744ae8b3ef639a30ddd878a Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 09:01:24 +0200 Subject: [PATCH 73/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java --- .../tractusx/irs/services/validation/JsonValidatorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index 3b09ae01ee..c5a3e6cdf8 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -57,7 +57,7 @@ public JsonValidatorService(final JsonUtil parser) { * Validate the payload against the schema. * * @param jsonSchema the JSON schema - * @param jsonPayload the JSON policies to validate + * @param jsonPayload the JSON payload to validate * @return the validation result, containing the validation errors if applicable */ public ValidationResult validate(final String jsonSchema, final String jsonPayload) throws InvalidSchemaException { From 7cac10260e858159db81338455ce822854e45956 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 09:01:57 +0200 Subject: [PATCH 74/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java --- .../tractusx/irs/services/validation/JsonValidatorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index c5a3e6cdf8..9d95eefe23 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -77,7 +77,7 @@ public ValidationResult validate(final String jsonSchema, final String jsonPaylo log.warn("Unable to validate JSON payload ({})", jsonPayload, e); return ValidationResult.builder() .valid(false) - .validationError("Illegal JSON policies, cannot be validated") + .validationError("Illegal JSON payload, cannot be validated") .build(); } } From e23ff9e8d4c8db047b9127bedcb72802f1ca869f Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 09:03:08 +0200 Subject: [PATCH 75/96] Update irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java --- .../src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java index e3d2edd65c..eb30ba208f 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/util/JsonUtil.java @@ -79,7 +79,7 @@ public String asString(final Object input) { try { return MAPPER.writeValueAsString(input); } catch (JsonProcessingException e) { - log.error("Error serializing policies", e); + log.error("Error serializing payload", e); throw new JsonParseException(e); } } From 7773020fdde50ddd90215be348609050fa87927c Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 09:05:32 +0200 Subject: [PATCH 76/96] Update irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java --- .../tractusx/irs/policystore/models/CreatePolicyRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java index a3e3054150..59624d8d47 100644 --- a/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java +++ b/irs-policy-store/src/main/java/org/eclipse/tractusx/irs/policystore/models/CreatePolicyRequest.java @@ -59,7 +59,7 @@ The business partner number (BPN) for which the policy should be registered. JsonObject payload) { @SuppressWarnings("java:S2479") - // this value is used by open-api to show example policies + // this value is used by open-api to show example payload // \u0009 character is required for this value to be correctly shown in open-api public static final String EXAMPLE_PAYLOAD = """ { From db75d10ff43a24c2603aeda913e60b0dd675d1e2 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Wed, 10 Apr 2024 10:25:20 +0200 Subject: [PATCH 77/96] fix(impl): [#199] fix insomnia collection --- .../IRS_Request_Collection.json | 7257 +++++++++-------- 1 file changed, 3661 insertions(+), 3596 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 7f3f7a0d53..941366d437 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -1,3600 +1,3665 @@ { - "_type": "export", - "__export_format": 4, - "__export_date": "2024-04-04T09:16:52.974Z", - "__export_source": "insomnia.desktop.app:v2023.5.8", - "resources": [ - { - "_id": "req_2d5a4fb5ec0845059533cb9904910156", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", - "modified": 1705006817408, - "created": 1705005887617, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get all policies", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1705005887617, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3982c8bdad534c0ea601f61bdb785816", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", - "modified": 1711596830125, - "created": 1711449523700, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get policies for BPN", + "_type": "export", + "__export_format": 4, + "__export_date": "2024-04-10T08:18:24.322Z", + "__export_source": "insomnia.desktop.app:v8.6.1", + "resources": [ + { + "_id": "req_ddeaf33f8aba4e7caa89d257bb8adbdf", + "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "modified": 1705006817408, + "created": 1705005887617, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get all policies", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1705005887617, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1687243055015, + "created": 1687243055015, + "name": "Policy Store", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1687243055015, + "_type": "request_group" + }, + { + "_id": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", + "modified": 1691572726194, + "created": 1680682418636, + "name": "IRS DEMO Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418636, + "_type": "request_group" + }, + { + "_id": "wrk_53254e8de24e4d6e8325f803463490e8", + "parentId": null, + "modified": 1701227455138, + "created": 1701227455138, + "name": "IRS", + "description": "", + "scope": "collection", + "_type": "workspace" + }, + { + "_id": "req_209e12e564484bacbcdee19f862c4ffe", + "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "modified": 1712736856772, + "created": 1711449523700, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get policies for BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "id": "pair_8482da576c10480b9f7edf7a4aa752c6", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890AB", + "description": "", + "disabled": false + }, + { + "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890XX", + "description": "", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1703116992024, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b9950550995c4f888e5ded6c6c275035", + "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "modified": 1702990529632, + "created": 1687243204155, + "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", + "name": "Delete policy", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1685602897140.75, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2c425451945e4aec953f2a319fed6353", + "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "modified": 1712736811711, + "created": 1693576003390, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Update policies", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policy-id12\"\n\t]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684874704117.875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0145ca9fad0a4322b1fe4f9999fb568c", + "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", + "modified": 1712736780844, + "created": 1687243182397, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Register policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL1234567890AB\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1683962737633.5, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_07bf6fac04c7463484434f109bd87a23", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003275081, + "created": 1680682418619, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", + "name": "Get Shell by aasIdentifier", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418619, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_c6e3c0e5fc504a15975467f151974fa5", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1691504187689, + "created": 1680682418630, + "name": "Digital Twin Registry", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418630, + "_type": "request_group" + }, + { + "_id": "req_d671d2da0dd348509317de89de928e8a", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706002920212, + "created": 1690529035794, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", + "name": "Get Shells", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418614, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_bf3345a1de634cf282ce419e0de0b1fc", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003278149, + "created": 1680682418609, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", + "disabled": true, + "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", + "disabled": true, + "id": "pair_cc48c08e3b834497a2d88bd4201c3867" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", + "disabled": false, + "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", + "disabled": true, + "id": "pair_706e6930cc874343941b744a054ef388" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", + "disabled": true, + "id": "pair_45c6bcf3266a475891ebbbba6cde0798" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", + "disabled": true, + "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", + "disabled": true, + "id": "pair_d72f55c7bf714c7c9aae58456c778443" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", + "disabled": true, + "id": "pair_406c9da4dc014fb297f70bb3da7128c1" + } + ], + "headers": [ + { + "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418609, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9d96d6cf4d06400c9cf9f9c0cabcaeed", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003280850, + "created": 1680682418595, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By VAN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", + "disabled": false, + "id": "pair_50d86e928e9f448d97da8ada0390e12f" + } + ], + "headers": [ + { + "id": "pair_ed11c2a6df9248e292914df944e8ba93", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418595, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_64ab7bb5a4224fb7a467c9614a5bd34e", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003354109, + "created": 1680682418581, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", + "disabled": false, + "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" + } + ], + "headers": [ + { + "id": "pair_71ae5e562e9c414a82e84220f3c00343", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418581, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b297ba4421144beba4c295260f78b66d", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003284715, + "created": 1680682418570, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By VAN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_2f4c445074514f92a4dee92554053d0a" + }, + { + "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418570, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_24bd3fe717c14549a17a41ec75bdd6c3", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003286642, + "created": 1691408320970, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" + }, + { + "id": "pair_5dc1d703196747318faff9a8dd96be0c", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418560.5, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_fb7c0fc211f44397a850a2bc562b96c0", + "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", + "modified": 1706003289343, + "created": 1689167429413, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Shell by aasIdentifier", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [ + { + "id": "pair_6266690c04fd466fa1617082f5b8ec76", + "name": "pageSize", + "value": "50", "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "id": "pair_8482da576c10480b9f7edf7a4aa752c6", - "name": "businessPartnerNumbers", - "value": "BPNL1234567890AB", - "description": "", - "disabled": false - }, - { - "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", - "name": "businessPartnerNumbers", - "value": "BPNL123456789012", - "description": "", - "disabled": false - } + "disabled": true + } + ], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418470, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6a734310d9794711895a7412e4a489bb", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991054859, + "created": 1680682418551, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.0.0 [Register Job]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418551, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_57f291f4f2184a68a104dc0706e73962", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418562, + "created": 1680682418562, + "name": "IRS Test Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418562, + "_type": "request_group" + }, + { + "_id": "req_b598213913a841fc93bebd37ccc2fe1c", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991058493, + "created": 1680682418539, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.0 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418539, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1faa38ab41ec44058e569885a1b83a53", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991063641, + "created": 1680682418524, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.1 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418524, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_c463e6aa998c4305b8e24013bfe3df79", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991067797, + "created": 1680682418514, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418514, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9d7b7729c3c747e685d0ae781d7a9e9a", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991071709, + "created": 1680682418504, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418504, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e0fcb6d8e38146718d518ada1afad4b2", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991076696, + "created": 1695042901876, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418496, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_97693e7c910944ddb12bd6715ece0634", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076144872, + "created": 1680682418488, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.0 [Register Job with aspect SerialPart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418488, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a6532b996ee24749a7deedfc497871b2", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076455844, + "created": 1680682418479, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418479, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_93c58e5d9eac441b946e3c91eafc5e55", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1712222178406, + "created": 1680682418469, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418469, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_bd90c4ae330143b681d3e40e28b08678", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076741632, + "created": 1680682418442, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.3 [Register Job with aspect PartAsPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418442, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6bfba7dfa13340ef82af70bfe3ceb888", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076751758, + "created": 1680682418432, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.4 [Register Job with upward direction]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418432, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_38df9b91319444298e0cb7e4c12db6c2", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1712222124387, + "created": 1695192937155, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.5 [Register Job with aspect JustInSequencePart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418428, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6e8167a35b75481b8e06fd6ce11ecb0e", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1712222106070, + "created": 1695192971825, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418426, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3a497f19d7984482a4ec2a0b5fa046e5", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076214310, + "created": 1680682418424, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418424, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_bdb5f2b5b99647a99cab15ab4c1cec82", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991130711, + "created": 1680682418414, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418414, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_43b5831ce81b4221a223667cbe141160", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076937249, + "created": 1680682418401, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.5.0 [Register Job with all aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418401, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_155a7e4b96624743b599ed75c83aedf8", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076677384, + "created": 1680682418392, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.6.0 [Register Job with BPN lookup]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418392, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d915c524b71c43018f58e7151b40687c", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076237949, + "created": 1683184048412, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.7.0 [Register Job with invalid policy]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418386.5, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_8cf09f0176df4010ad033de0a19f9a07", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076397373, + "created": 1693493383337, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.0 [Register Job with data integrity success]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418382.375, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5a31fda0c5d14ad7ab4d8de1a7355836", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076245754, + "created": 1693493584873, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.1 [Register Job with data integrity wrong hash]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.6875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_87e0551ccbbb474a99e8b91869af39d5", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076391502, + "created": 1693493594373, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.2 [Register Job with data integrity wrong signature]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.3438, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3a13072096c84c98a5d4ba66df3088ce", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1710076385497, + "created": 1693493604521, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.1719, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d6aea3d1645a49438def9a9f8fbfacfd", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991173689, + "created": 1680682418381, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.0 [Search for completed Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "COMPLETED", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_53d5f4fe6b464127a302b1a7dc6c76b9", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991177973, + "created": 1680682418372, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.1 [Search for Jobs in error state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418372, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_58a136c047034eb7a688048cbdf108fb", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991182139, + "created": 1680682418358, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.2 [Search for Jobs in initial state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "INITIAL", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418358, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f570a88240804513aa54f57660cd13a9", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991186114, + "created": 1680682418348, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.3 [Search for all Jobs in JobStore]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418348, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_98c5e996682446a1a23faae569a5a13e", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991190326, + "created": 1680682418339, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.1.0 [Search for running Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "RUNNING", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418339, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_90e45ff9e06c4e179677db5e8f41aae6", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991196283, + "created": 1680682418325, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.0.0 [Search for given jobId with uncomplete]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418325, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_072ae3b46a564fd78f37ab686cbc7270", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991200399, + "created": 1680682418316, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.1.0 [Search for given jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418316, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e15a23d43cae40c783dd6d2ebb90cea0", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991205447, + "created": 1680682418307, + "url": "{{IRS_HOST}}/irs/jobs/test", + "name": "3.1.1 [Search for invalid jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418307, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_c97b48a91163423aaaeeb77abd78a4a4", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991214202, + "created": 1680682418297, + "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", + "name": "3.1.2 [Search for unknown jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418297, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_909b3f2338a04498b737ec6fc16189bd", + "parentId": "fld_57f291f4f2184a68a104dc0706e73962", + "modified": 1702991218362, + "created": 1680682418280, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "6.0.0 [Cancel Job for given jobId]", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418280, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b587b3cc5fe64d4086856c228a1a0d52", + "parentId": "fld_18778b59b43a433caf173c19db608803", + "modified": 1705942015684, + "created": 1682672699249, + "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", + "name": "Find BPN endpoints for manufacturer numbers", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630902023, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_18778b59b43a433caf173c19db608803", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1683630931664, + "created": 1683630887514, + "name": "Discovery", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418417.5, + "_type": "request_group" + }, + { + "_id": "req_813c337498d44a0698850adb60b259cf", + "parentId": "fld_18778b59b43a433caf173c19db608803", + "modified": 1705942027574, + "created": 1683031718699, + "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", + "name": "Find BPN Discovery Endpoints of type BPN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901923, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5d03557be4d54ec4871d2f5bffdb0993", + "parentId": "fld_18778b59b43a433caf173c19db608803", + "modified": 1705942036978, + "created": 1683560906453, + "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", + "name": "Find EDC endpoints for BPNs", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "[\n\t\"BPNL00000001CRHK\"\n]" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901873, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_cb31a166ccd64ab5bf20099ebc205d93", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1710076352238, + "created": 1680682418265, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Register Job", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418265, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_02b6868263c048c8ac135574159fbb4d", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418273, + "created": 1680682418273, + "name": "IRS Basic API Calls", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418273, + "_type": "request_group" + }, + { + "_id": "req_dcb90264a2d54f9ab00bfb3f6282f287", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1705942154792, + "created": 1680682418238, + "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", + "name": "Get registered Job", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418261, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_4584dacb86d84733a7a5db8a5c59c92d", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1702991288793, + "created": 1680682418257, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for all Jobs in JobStore", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418257, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9d8c59f193db4066ab035ec6817343cc", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1702991284435, + "created": 1680682418247, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for Jobs for given state", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": true, + "id": "pair_c694b66f41e649db837f801b5699859e" + }, + { + "name": "states", + "value": "CANCELED,COMPLETED", + "disabled": false, + "id": "pair_ab346623e5394504b7232cc40ae75bed" + }, + { + "id": "pair_ddbccd5219944e8cac3d99249ba881e5", + "name": "states", + "value": "RUNNING", + "description": "", + "disabled": true + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418247, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_42436010753b49d7b2bd3b6fba68aeb0", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1703236659047, + "created": 1690384427379, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Get Job for jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418238, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_51bcc80f9f8441f891a7aecd43099ffd", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1702991276045, + "created": 1680682418229, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Cancel Job for jobId", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418229, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_58577c766064460daa0b53230ded33df", + "parentId": "fld_02b6868263c048c8ac135574159fbb4d", + "modified": 1702991272198, + "created": 1682498338739, + "url": "{{IRS_HOST}}/irs/aspectmodels", + "name": "Get all available Aspect Models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418179, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0443d99781bd42589da0f47adc43b647", + "parentId": "fld_1c510cd576c047e183e89c7247376950", + "modified": 1705942066941, + "created": 1680682418213, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", + "name": "Get all models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "pageSize", + "value": "100", + "disabled": false, + "id": "pair_96567b64925d4487bae4c74bfa9e021e" + }, + { + "id": "pair_2dae68db8a564296a5835e66d951331f", + "name": "status", + "value": "RELEASED", + "description": "" + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418213, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_1c510cd576c047e183e89c7247376950", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418222, + "created": 1680682418222, + "name": "Semantics Hub", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418222, + "_type": "request_group" + }, + { + "_id": "req_982fbe03f688402eaa3a59864d57c0b9", + "parentId": "fld_1c510cd576c047e183e89c7247376950", + "modified": 1705942077015, + "created": 1680682418204, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", + "name": "Get SerialPartTypization", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418204, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9e90c9c88cc64b129fd7bbd8dfada97f", + "parentId": "fld_1c510cd576c047e183e89c7247376950", + "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", + "name": "Get SerialPartTypization Json Schema", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418192, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9b5eef1cbd554d529be04f572b8e0cd2", + "parentId": "fld_ff7ba332fb1a4cdfb1c06e621623fa18", + "modified": 1705942100313, + "created": 1680682418174, + "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", + "name": "Get business partner by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "idType", + "value": "BPN", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.BPDM_CLIENT_ID }}", + "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418174, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_ff7ba332fb1a4cdfb1c06e621623fa18", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418184, + "created": 1680682418184, + "name": "Business partner data management", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418184, + "_type": "request_group" + }, + { + "_id": "req_7f85de9d20cf4ec29a00e45da4ef7476", + "parentId": "fld_fb01fe78b13140f0a6ced1d4e35a8a74", + "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", + "name": "Get Esr Statistics", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418158, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_fb01fe78b13140f0a6ced1d4e35a8a74", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418167, + "created": 1680682418167, + "name": "ESR Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418167, + "_type": "request_group" + }, + { + "_id": "req_edabe6732540481fa4388624c858d3c1", + "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", + "modified": 1702991361578, + "created": 1680682418143, + "url": "{{IRS_HOST}}/ess/bpn/investigations", + "name": "Register Job Investigation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418143, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_cdd3393410894a898d9e6a94ba0f562e", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418151, + "created": 1680682418151, + "name": "ESS Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418151, + "_type": "request_group" + }, + { + "_id": "req_7f672ad9256948198de016c9c9d68147", + "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", + "modified": 1705942138125, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", + "name": "Get registered investigation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418138.5, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_269a3f979e7e45718f632d302b621cd8", + "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", + "modified": 1702991370481, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Search for investigation by jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418134, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f449a89c593f4c2f8718c066a48424e6", + "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "modified": 1710076303275, + "created": 1680682418118, + "url": "{{IRS_HOST}}/irs/orders", + "name": "Register Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418118, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1680682418128, + "created": 1680682418128, + "name": "Batch Processing", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418128, + "_type": "request_group" + }, + { + "_id": "req_8c2b07404f0443deac9794df5f6b8351", + "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "modified": 1702991390349, + "created": 1696342619602, + "url": "{{IRS_HOST}}/irs/ess/orders", + "name": "Register ESS Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418113.5, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_8a9bb9cec5094d85beec4418eb22caeb", + "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "modified": 1705006936944, + "created": 1705006139836, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Cancel order job for given orderId", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_88db8badf4ea4a0d9968c769167407c8" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418111.25, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5716aae510fb40a3a2f83223cd358619", + "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "modified": 1702991398473, + "created": 1680682418109, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Search for given orderId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418109, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2a685edc7b7e4d5f9f6375ee30379a9f", + "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", + "modified": 1702991409664, + "created": 1680682418099, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", + "name": "Search for given orderId and batchId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418099, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5e843735001340b8bf5baa8caf297438", + "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", + "modified": 1690472186478, + "created": 1678358655308, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722939.1875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", + "parentId": "fld_480bc634dc164f10969a0e0610b09446", + "modified": 1690362660167, + "created": 1690362660167, + "name": "Catalog", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1690362660167, + "_type": "request_group" + }, + { + "_id": "fld_480bc634dc164f10969a0e0610b09446", + "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", + "modified": 1690363778601, + "created": 1675675609576, + "name": "EDC-Requests", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418078, + "_type": "request_group" + }, + { + "_id": "req_a10b377a98bb4c23b58eef57897e69c8", + "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", + "modified": 1691500654267, + "created": 1685521485278, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with registry filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722889.1875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_06d2a55e47414327b9cff7bf9c366d10", + "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", + "modified": 1705940987109, + "created": 1691654388376, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with asset filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722789.1875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_94c1a50d71fb44c9b4e6b5364bfd9291", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1691578280640, + "created": 1675675609557, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", + "name": "Start contract negotiation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511095, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "parentId": "fld_480bc634dc164f10969a0e0610b09446", + "modified": 1684146626847, + "created": 1684146519491, + "name": "Negotiation", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1679911060327.75, + "_type": "request_group" + }, + { + "_id": "req_cca5eeb9c9e04258a5052704f68fb53b", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1690362123962, + "created": 1675675609549, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", + "name": "Get contract negotiation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511045, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6ebf18b651e54a80b06077dd8f477a4c", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1690362117725, + "created": 1685444139708, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", + "name": "Cancel contract negotation", + "description": "", + "method": "POST", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511020, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_97c60db796524e13a60d7396045f48b1", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1690361721223, + "created": 1681911985730, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", + "name": "Get contract negotiations", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510995, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ceafbae9dd434a9e87ad3a1b94c6895a", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1691578311420, + "created": 1675675609541, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", + "name": "Start transferprocess", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510945, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_725be1435d9a4a81acff7851fa7c292e", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1691503370103, + "created": 1679993996270, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", + "name": "Get transferprocess by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510895, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9bf082344f1f4c9da9e9ae7d970fae6d", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1690361795179, + "created": 1675675609525, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", + "name": "Get transferprocesses", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510845, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f22279e6764548bbb72961d3f036d069", + "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", + "modified": 1690361763512, + "created": 1681910653593, + "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", + "name": "Get contract agreements", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510795, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_29134bc0c5924329812e12a1bd1851e7", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362947546, + "created": 1681907482278, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", + "name": "Create Asset", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033461.75, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "parentId": "fld_480bc634dc164f10969a0e0610b09446", + "modified": 1705940929752, + "created": 1684146457388, + "name": "Provider", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1678852197613.5625, + "_type": "request_group" + }, + { + "_id": "req_8ced6c1761be4c60b36a9f6b3e5394b8", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362407763, + "created": 1685444139630, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Asset by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033452.375, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6effcc7552d74be2a2ed322443176d57", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362438115, + "created": 1685444139625, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", + "name": "Get all Assets", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033447.6875, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_fcee54d2cded47d4859ed8f3e1bed573", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362400081, + "created": 1685444139636, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Asset", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033433.625, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_916d09dca1c94d64b79261d7cb19a76b", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362581978, + "created": 1685444139641, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", + "name": "Create Policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033403.9375, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_476634e2ecb6474ea50d6244963e4504", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362549290, + "created": 1685444139647, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Policy by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033364.0938, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_55df3c43719445d4862e8854da509e3d", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362591799, + "created": 1685444139653, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", + "name": "Get all Policies", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033344.1719, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d7d1ac6276fd4b74a8b6b965051e2a44", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362559324, + "created": 1685444139659, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Policy by ID", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033299.25, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0d05f6bdbd2d4050ae6c7b09b837fd80", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690363080444, + "created": 1685444139665, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", + "name": "Create Contract Definitinion", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033261.75, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_19c9156fc063408bba57c8f6ed5fd217", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690362691392, + "created": 1685444139672, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Contract Definition by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033199.25, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_4f56442d3d614af3ba7c668ab9da99c4", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690363126919, + "created": 1685444139678, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", + "name": "Get all Contract Definitinions", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033174.25, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_14caa7ed15cc427dbf1b01d2aa96860a", + "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", + "modified": 1690363136216, + "created": 1685444139684, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Contract Definition", + "description": "", + "method": "DELETE", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033149.25, + "isPrivate": false, + "pathParameters": [], + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "env_cd08041ce8f97848d5dcccbfd57dd79d914d5272", + "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", + "modified": 1701227605781, + "created": 1701227455152, + "name": "Base Environment", + "data": {}, + "dataPropertyOrder": {}, + "color": null, + "isPrivate": false, + "metaSortKey": 1701227455152, + "_type": "environment" + }, + { + "_id": "jar_cd08041ce8f97848d5dcccbfd57dd79d914d5272", + "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", + "modified": 1701424442877, + "created": 1701227455156, + "name": "Default Jar", + "cookies": [ + { + "key": "KC_RESTART", + "expires": "1970-01-01T00:00:10.000Z", + "maxAge": 0, + "domain": "centralidp.int.demo.catena-x.net", + "path": "/auth/realms/CX-Central/", + "httpOnly": true, + "extensions": [ + "Version=1" ], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1703116992024, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - } - , - { - "_id": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1687243055015, - "created": 1687243055015, - "name": "Policy Store", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1687243055015, - "_type": "request_group" - }, - { - "_id": "fld_d5990860fbf2447ea5458e20134a1479", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1691572726194, - "created": 1680682418636, - "name": "IRS DEMO Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418636, - "_type": "request_group" - }, - { - "_id": "wrk_565df8abe30f4da29d8bffcde97927d7", - "parentId": null, - "modified": 1680682438221, - "created": 1680682419747, - "name": "IRS", - "description": "", - "scope": "collection", - "_type": "workspace" - }, - { - "_id": "req_362e65d57ebd44abbd763389316bd595", - "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", - "modified": 1702990529632, - "created": 1687243204155, - "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", - "name": "Delete policy", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1685602897140.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_cbd1ae216b704ca9b1bd19a373f15e8b", - "parentId": "fld_7b07eaf7d8124d3385d12ef2dfd8c5f1", - "modified": 1711099840007, - "created": 1693576003390, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Update policies", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policyId\"\n\t]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684874704117.875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_95aa08cefddc4743afc85fcabf40e4ee", - "parentId": "fld_c751e5e73d5248a3ae22a44bafae7906", - "modified": 1711573295984, - "created": 1687243182397, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Register policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"x\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1683962737633.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_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 %}", - "name": "Get Shell by aasIdentifier", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418619, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_399334c817994e2189624ff7b3431877", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1691504187689, - "created": 1680682418630, - "name": "Digital Twin Registry", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418630, - "_type": "request_group" - }, - { - "_id": "req_f6c0d00f22fe4bd8bedd9baa0b9fcb8e", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706002920212, - "created": 1690529035794, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", - "name": "Get Shells", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418614, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_c223e093de1b4ecfaee2a0fac88f6f76", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003278149, - "created": 1680682418609, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By BPN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", - "disabled": true, - "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", - "disabled": true, - "id": "pair_cc48c08e3b834497a2d88bd4201c3867" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", - "disabled": false, - "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", - "disabled": true, - "id": "pair_706e6930cc874343941b744a054ef388" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", - "disabled": true, - "id": "pair_45c6bcf3266a475891ebbbba6cde0798" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", - "disabled": true, - "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", - "disabled": true, - "id": "pair_d72f55c7bf714c7c9aae58456c778443" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", - "disabled": true, - "id": "pair_406c9da4dc014fb297f70bb3da7128c1" - } - ], - "headers": [ - { - "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418609, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bfcd07c68515497285b3bf626780d908", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003280850, - "created": 1680682418595, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By VAN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", - "disabled": false, - "id": "pair_50d86e928e9f448d97da8ada0390e12f" - } - ], - "headers": [ - { - "id": "pair_ed11c2a6df9248e292914df944e8ba93", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418595, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_601086420b144c3889a2c102ca323032", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003354109, - "created": 1680682418581, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", - "disabled": false, - "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" - } - ], - "headers": [ - { - "id": "pair_71ae5e562e9c414a82e84220f3c00343", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418581, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_38005604efd443a98525d9fd78eb7b21", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003284715, - "created": 1680682418570, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By VAN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_2f4c445074514f92a4dee92554053d0a" - }, - { - "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418570, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_447ae23a0b274b8aa03dc6d30d2a5424", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003286642, - "created": 1691408320970, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" - }, - { - "id": "pair_5dc1d703196747318faff9a8dd96be0c", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418560.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9d6b2234852a47a3935db24ca44034d8", - "parentId": "fld_399334c817994e2189624ff7b3431877", - "modified": 1706003289343, - "created": 1689167429413, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Shell by aasIdentifier", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [ - { - "id": "pair_6266690c04fd466fa1617082f5b8ec76", - "name": "pageSize", - "value": "50", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418470, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2251872027064b61b357c75f64d0c57b", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991054859, - "created": 1680682418551, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.0.0 [Register Job]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418551, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_a3ad61910c48475e8359adbb967b744e", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418562, - "created": 1680682418562, - "name": "IRS Test Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418562, - "_type": "request_group" - }, - { - "_id": "req_9227c04bec9241d3a324914f94a361e6", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991058493, - "created": 1680682418539, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.0 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418539, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_46b2274eef02402aaf0c9a6c11d261c8", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991063641, - "created": 1680682418524, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.1 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418524, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_8b9cc8edfec14f92a94386c11fc4ec10", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991067797, - "created": 1680682418514, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418514, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_fd649852aee8412496d292c376a9cc0f", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991071709, - "created": 1680682418504, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418504, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_c8f2d6cbef4443e08e02aefbc34d3f6d", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991076696, - "created": 1695042901876, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418496, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ae6b02b0d78341949a208629e4af18a4", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076144872, - "created": 1680682418488, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.0 [Register Job with aspect SerialPart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418488, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f6789fe83c084260811a9ae0822f9d7b", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076455844, - "created": 1680682418479, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418479, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_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]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418469, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_204f07b952914f9ebf1e5fc161fb32c1", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076741632, - "created": 1680682418442, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.3 [Register Job with aspect PartAsPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418442, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9086d9055fd843d3a2be98f06a42a9ee", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076751758, - "created": 1680682418432, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.4 [Register Job with upward direction]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418432, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bf93a6e78af645df8484ac723f41ecae", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1712222124387, - "created": 1695192937155, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.5 [Register Job with aspect JustInSequencePart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418428, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b44deeb9e5dc499da92d37150a915739", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1712222106070, - "created": 1695192971825, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418426, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e42c551ee48e4181886d6934a5e26de1", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076214310, - "created": 1680682418424, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418424, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_57e97fb6ec854c54a4f1acef82aa53e3", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991130711, - "created": 1680682418414, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418414, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e0c5b388d9384bd68844477b78d2073c", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076937249, - "created": 1680682418401, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.5.0 [Register Job with all aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418401, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1454ecaa280e41c19cf9a783f266cf28", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076677384, - "created": 1680682418392, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.6.0 [Register Job with BPN lookup]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418392, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b38ed15c25444cc9b3b4945ef37bf759", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076237949, - "created": 1683184048412, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.7.0 [Register Job with invalid policy]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418386.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_64aa3921e4d9417a8bda809395fedfd0", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076397373, - "created": 1693493383337, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.0 [Register Job with data integrity success]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418382.375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0d14d7d30aeb47ce96a378a108c29a24", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076245754, - "created": 1693493584873, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.1 [Register Job with data integrity wrong hash]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.6875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a0fff747c70a4e7cb804ab04a27ba558", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076391502, - "created": 1693493594373, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.2 [Register Job with data integrity wrong signature]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.3438, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5058f9f4db8b4fb296ac2151fe2970f6", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1710076385497, - "created": 1693493604521, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.1719, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_fcde9edb3d4e4a84a92dc35de39b7db6", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991173689, - "created": 1680682418381, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.0 [Search for completed Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "COMPLETED", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d10135309f1440f386e48c4b7a927cdd", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991177973, - "created": 1680682418372, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.1 [Search for Jobs in error state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418372, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0467f5042d984b59a82697c255e4ce44", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991182139, - "created": 1680682418358, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.2 [Search for Jobs in initial state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "INITIAL", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418358, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_04d347707fd44505a301f848fb4600d7", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991186114, - "created": 1680682418348, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.3 [Search for all Jobs in JobStore]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418348, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9b4c3432d85c4c1a8e9294855f985079", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991190326, - "created": 1680682418339, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.1.0 [Search for running Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "RUNNING", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418339, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e1ef23e1ac694b9391c9122b6467e6d7", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991196283, - "created": 1680682418325, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.0.0 [Search for given jobId with uncomplete]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418325, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_49e81c6751334d65a09800b6c10a9f0b", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991200399, - "created": 1680682418316, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.1.0 [Search for given jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418316, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_95a1fbb7f2794f45b474453b821747e2", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991205447, - "created": 1680682418307, - "url": "{{IRS_HOST}}/irs/jobs/test", - "name": "3.1.1 [Search for invalid jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418307, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_820a52e3034b47ce826340abda18a209", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991214202, - "created": 1680682418297, - "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", - "name": "3.1.2 [Search for unknown jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418297, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_870747b6397a47d8a6d1874003e0c440", - "parentId": "fld_a3ad61910c48475e8359adbb967b744e", - "modified": 1702991218362, - "created": 1680682418280, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "6.0.0 [Cancel Job for given jobId]", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418280, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2389daf68dbb4aa9a21eecf655e1aa03", - "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", - "modified": 1705942015684, - "created": 1682672699249, - "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", - "name": "Find BPN endpoints for manufacturer numbers", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630902023, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1683630931664, - "created": 1683630887514, - "name": "Discovery", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418417.5, - "_type": "request_group" - }, - { - "_id": "req_4427567cd7034c76983b1d88aa714a49", - "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", - "modified": 1705942027574, - "created": 1683031718699, - "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", - "name": "Find BPN Discovery Endpoints of type BPN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901923, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_de39da8661a34613b763fbe47168bddd", - "parentId": "fld_744d44cfb4ba47a4ae85fa2c6c06e391", - "modified": 1705942036978, - "created": 1683560906453, - "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", - "name": "Find EDC endpoints for BPNs", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "[\n\t\"BPNL00000001CRHK\"\n]" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901873, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_41cb9f12f54e4fd9aacf948a323e2c05", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1710076352238, - "created": 1680682418265, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Register Job", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418265, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_405308b190c64bb29cb03c2f3a180b68", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418273, - "created": 1680682418273, - "name": "IRS Basic API Calls", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418273, - "_type": "request_group" - }, - { - "_id": "req_a71ca537c9544ab1a5a791cafd39f826", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1705942154792, - "created": 1680682418238, - "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", - "name": "Get registered Job", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418261, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5de53e25a25f44d0933be4b1564ac80a", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1702991288793, - "created": 1680682418257, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for all Jobs in JobStore", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418257, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6ef501ec2829461a8c507d87625a5cda", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1702991284435, - "created": 1680682418247, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for Jobs for given state", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": true, - "id": "pair_c694b66f41e649db837f801b5699859e" - }, - { - "name": "states", - "value": "CANCELED,COMPLETED", - "disabled": false, - "id": "pair_ab346623e5394504b7232cc40ae75bed" - }, - { - "id": "pair_ddbccd5219944e8cac3d99249ba881e5", - "name": "states", - "value": "RUNNING", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418247, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_8b52d17f3bfe456da711757d0d79dcf3", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1703236659047, - "created": 1690384427379, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Get Job for jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418238, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2e8b481698814a9fa1143db6a9fd6031", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1702991276045, - "created": 1680682418229, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Cancel Job for jobId", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418229, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2ec823bafb9d4af09671ce809a37790c", - "parentId": "fld_405308b190c64bb29cb03c2f3a180b68", - "modified": 1702991272198, - "created": 1682498338739, - "url": "{{IRS_HOST}}/irs/aspectmodels", - "name": "Get all available Aspect Models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418179, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6eee723fa30e4cb594dab53f2186b99a", - "parentId": "fld_902c811a969e46af8ee1fc32036c218b", - "modified": 1705942066941, - "created": 1680682418213, - "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", - "name": "Get all models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "pageSize", - "value": "100", - "disabled": false, - "id": "pair_96567b64925d4487bae4c74bfa9e021e" - }, - { - "id": "pair_2dae68db8a564296a5835e66d951331f", - "name": "status", - "value": "RELEASED", - "description": "" - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418213, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_902c811a969e46af8ee1fc32036c218b", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418222, - "created": 1680682418222, - "name": "Semantics Hub", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418222, - "_type": "request_group" - }, - { - "_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", - "name": "Get SerialPartTypization", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418204, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_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", - "name": "Get SerialPartTypization Json Schema", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418192, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_fa5d9519b09c416e940dbfaa6d37f3c2", - "parentId": "fld_857f5311c3d44dca98d5df7170f17b66", - "modified": 1705942100313, - "created": 1680682418174, - "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", - "name": "Get business partner by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "idType", - "value": "BPN", - "disabled": false - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.BPDM_CLIENT_ID }}", - "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418174, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_857f5311c3d44dca98d5df7170f17b66", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418184, - "created": 1680682418184, - "name": "Business partner data management", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418184, - "_type": "request_group" - }, - { - "_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", - "name": "Get Esr Statistics", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418158, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_ddb57b7df61a4c7fbb8dd6e09a55aefb", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418167, - "created": 1680682418167, - "name": "ESR Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418167, - "_type": "request_group" - }, - { - "_id": "req_1703e4aef5d14fa8b7a1af89386bdbaa", - "parentId": "fld_10ffabbc4736405badac478153d86d5a", - "modified": 1702991361578, - "created": 1680682418143, - "url": "{{IRS_HOST}}/ess/bpn/investigations", - "name": "Register Job Investigation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418143, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_10ffabbc4736405badac478153d86d5a", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418151, - "created": 1680682418151, - "name": "ESS Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418151, - "_type": "request_group" - }, - { - "_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 %}", - "name": "Get registered investigation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418138.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9828dfa817924497b0facd0a4693f0a7", - "parentId": "fld_10ffabbc4736405badac478153d86d5a", - "modified": 1702991370481, - "created": 1680682418134, - "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Search for investigation by jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418134, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d566c63461864dfb9d77ac70b22733f1", - "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", - "modified": 1710076303275, - "created": 1680682418118, - "url": "{{IRS_HOST}}/irs/orders", - "name": "Register Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418118, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_73e0c8163ecc44e6aa9331273816ae27", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1680682418128, - "created": 1680682418128, - "name": "Batch Processing", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418128, - "_type": "request_group" - }, - { - "_id": "req_1b2d7e8bd4fe4b328a41122a6dec75a6", - "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", - "modified": 1702991390349, - "created": 1696342619602, - "url": "{{IRS_HOST}}/irs/ess/orders", - "name": "Register ESS Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418113.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_8d4a3c99f116451591f816ffa044979e", - "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", - "modified": 1705006936944, - "created": 1705006139836, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Cancel order job for given orderId", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_88db8badf4ea4a0d9968c769167407c8" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418111.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ddc8290ec32f4571a2783ab161a495a2", - "parentId": "fld_73e0c8163ecc44e6aa9331273816ae27", - "modified": 1702991398473, - "created": 1680682418109, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Search for given orderId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418109, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_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 %}", - "name": "Search for given orderId and batchId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418099, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_28ef5730f96e4c21892a83bb68020cbb", - "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", - "modified": 1690472186478, - "created": 1678358655308, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722939.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_5e7596546a69493dae447ea588ac5ba8", - "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", - "modified": 1690362660167, - "created": 1690362660167, - "name": "Catalog", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1690362660167, - "_type": "request_group" - }, - { - "_id": "fld_d51833440f684123a8dd6b0ec9441faa", - "parentId": "fld_d5990860fbf2447ea5458e20134a1479", - "modified": 1690363778601, - "created": 1675675609576, - "name": "EDC-Requests", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418078, - "_type": "request_group" - }, - { - "_id": "req_0ab0bc3449c2434094dcb6a4d616c8bf", - "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", - "modified": 1691500654267, - "created": 1685521485278, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with registry filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722889.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_cb6c22bc69f64adab97a35ddc4118cff", - "parentId": "fld_5e7596546a69493dae447ea588ac5ba8", - "modified": 1705940987109, - "created": 1691654388376, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with asset filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722789.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f5a54395820f445e8d9d09ceaa9ea623", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1691578280640, - "created": 1675675609557, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", - "name": "Start contract negotiation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511095, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", - "modified": 1684146626847, - "created": 1684146519491, - "name": "Negotiation", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1679911060327.75, - "_type": "request_group" - }, - { - "_id": "req_21c5f20359d547fbad6c4868e054c232", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1690362123962, - "created": 1675675609549, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", - "name": "Get contract negotiation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511045, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f328cb2312344d2484cacf927b3166fb", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1690362117725, - "created": 1685444139708, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", - "name": "Cancel contract negotation", - "description": "", - "method": "POST", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511020, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_95f64450aa5c4313adc1ecb31a77f885", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1690361721223, - "created": 1681911985730, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", - "name": "Get contract negotiations", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510995, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3f34cc3be1224fab9f1a57d46450ff01", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1691578311420, - "created": 1675675609541, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", - "name": "Start transferprocess", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510945, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b95afcbf1a804734be5c66416c6519b0", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1691503370103, - "created": 1679993996270, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", - "name": "Get transferprocess by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510895, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a8445e348e604e848bc2d970937b15af", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1690361795179, - "created": 1675675609525, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", - "name": "Get transferprocesses", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510845, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_43de63a43db448ddae87162ae7100840", - "parentId": "fld_8c763d94d1bb4008af0bc0d512e444ab", - "modified": 1690361763512, - "created": 1681910653593, - "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", - "name": "Get contract agreements", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510795, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_553997b9e0454fba9b49f48db256f156", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362947546, - "created": 1681907482278, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", - "name": "Create Asset", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033461.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "parentId": "fld_d51833440f684123a8dd6b0ec9441faa", - "modified": 1705940929752, - "created": 1684146457388, - "name": "Provider", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1678852197613.5625, - "_type": "request_group" - }, - { - "_id": "req_f67493fa1f8745b68dba040eece7c0ed", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362407763, - "created": 1685444139630, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Asset by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033452.375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2ba09ea750c44e1e990ca8cf7e5f5c1c", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362438115, - "created": 1685444139625, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", - "name": "Get all Assets", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033447.6875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_07817c96c266454caff85e6c8b938b8d", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362400081, - "created": 1685444139636, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Asset", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033433.625, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_920c48d7632841d6923f5d15a6d78225", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362581978, - "created": 1685444139641, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", - "name": "Create Policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033403.9375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_38bfd8f78ece4c8badbf58054f6c632a", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362549290, - "created": 1685444139647, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Policy by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033364.0937, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1ebfdc66d2034ea2afb736a7fdb38ad6", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362591799, - "created": 1685444139653, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", - "name": "Get all Policies", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033344.1719, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_adc928754ae54cf48f37a5d407a4749b", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362559324, - "created": 1685444139659, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Policy by ID", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033299.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3bcdfdd1c2b141f8842cecfe6abef0b7", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690363080444, - "created": 1685444139665, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", - "name": "Create Contract Definitinion", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033261.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_cc8d29800ba64bf3a60df1c14d1282df", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690362691392, - "created": 1685444139672, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Contract Definition by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033199.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3a9069ccfff7484e82c232b09329d698", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690363126919, - "created": 1685444139678, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", - "name": "Get all Contract Definitinions", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033174.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_76be9bdcf51b488d80d75389c47b1680", - "parentId": "fld_b5c045d33ab548bb9b7ac90dae06c0de", - "modified": 1690363136216, - "created": 1685444139684, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Contract Definition", - "description": "", - "method": "DELETE", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033149.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "env_d2b7eb1621841465ea24b73343568b286aa8ac9a", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1680782486844, - "created": 1680782486844, - "name": "Base Environment", - "data": {}, - "dataPropertyOrder": null, - "color": null, - "isPrivate": false, - "metaSortKey": 1680782486844, - "_type": "environment" - }, - { - "_id": "jar_d2b7eb1621841465ea24b73343568b286aa8ac9a", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1711542878876, - "created": 1680782486851, - "name": "Default Jar", - "cookies": [ - { - "key": "KC_RESTART", - "expires": "1970-01-01T00:00:10.000Z", - "maxAge": 0, - "domain": "centralidp.int.demo.catena-x.net", - "path": "/auth/realms/CX-Central/", - "httpOnly": true, - "extensions": [ - "Version=1" - ], - "hostOnly": true, - "creation": "2023-04-06T13:30:18.499Z", - "lastAccessed": "2024-03-27T12:34:38.876Z", - "id": "5637144203997095" - }, - { - "key": "KC_RESTART", - "expires": "1970-01-01T00:00:10.000Z", - "maxAge": 0, - "domain": "centralidp-pen.dev.demo.catena-x.net", - "path": "/auth/realms/CX-Central/", - "httpOnly": true, - "extensions": [ - "Version=1" - ], - "hostOnly": true, - "creation": "2024-02-13T11:37:30.975Z", - "lastAccessed": "2024-02-13T11:54:54.713Z", - "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" - } - ] + "hostOnly": true, + "creation": "2023-11-30T14:21:58.431Z", + "lastAccessed": "2023-12-01T09:54:02.877Z", + "id": "4550124559802897" + } + ], + "_type": "cookie_jar" + }, + { + "_id": "spc_a610e869f2384602ac1a9523d58b1ae0", + "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", + "modified": 1701227455141, + "created": 1701227455141, + "fileName": "IRS", + "contents": "", + "contentType": "yaml", + "_type": "api_spec" + } + ] } \ No newline at end of file From f6d1eeb508f98995031bce7f68a7880f16c541ab Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 11:29:27 +0200 Subject: [PATCH 78/96] chore(deps):[#463] Bump io.minio:minio to 8.5.9 --- irs-api/pom.xml | 4 ---- irs-common/pom.xml | 4 ---- irs-policy-store/pom.xml | 4 ---- pom.xml | 18 +----------------- 4 files changed, 1 insertion(+), 29 deletions(-) diff --git a/irs-api/pom.xml b/irs-api/pom.xml index 523462d8de..049bd3a511 100644 --- a/irs-api/pom.xml +++ b/irs-api/pom.xml @@ -46,10 +46,6 @@ io.minio minio - - org.xerial.snappy - snappy-java - com.squareup.okhttp3 okhttp diff --git a/irs-common/pom.xml b/irs-common/pom.xml index 3264382522..000443b682 100644 --- a/irs-common/pom.xml +++ b/irs-common/pom.xml @@ -67,10 +67,6 @@ io.minio minio - - org.xerial.snappy - snappy-java - com.squareup.okio okio-jvm diff --git a/irs-policy-store/pom.xml b/irs-policy-store/pom.xml index ca68a217c8..d4f129367c 100644 --- a/irs-policy-store/pom.xml +++ b/irs-policy-store/pom.xml @@ -38,10 +38,6 @@ io.minio minio - - org.xerial.snappy - snappy-java - org.springframework.boot spring-boot-starter-security diff --git a/pom.xml b/pom.xml index 899ad7b3bf..ea85514358 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ 2.36.1 3.9.5 2.1.0 - 8.5.6 + 8.5.9 5.4.0 4.2.0 1.5.1 @@ -136,22 +136,6 @@ io.minio minio ${minio.version} - - - org.bouncycastle - bcprov-jdk15on - - - snappy-java - org.xerial.snappy - - - - - - org.xerial.snappy - snappy-java - ${snappy-java.version} From 513b00b15eb766a821d4c5f1adc968998d546a31 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 11:30:26 +0200 Subject: [PATCH 79/96] chore(deps):[#463] Manually update org.apache.commons:commons-compress to 1.26.1 --- irs-testing/pom.xml | 12 ++++++++++++ pom.xml | 1 + 2 files changed, 13 insertions(+) diff --git a/irs-testing/pom.xml b/irs-testing/pom.xml index 7370be9eca..1f6821218c 100644 --- a/irs-testing/pom.xml +++ b/irs-testing/pom.xml @@ -103,6 +103,18 @@ org.testcontainers testcontainers + + + commons-compress + org.apache.commons + + + + + + org.apache.commons + commons-compress + ${commons-compress.version} org.testcontainers diff --git a/pom.xml b/pom.xml index ea85514358..da33f6f13c 100644 --- a/pom.xml +++ b/pom.xml @@ -123,6 +123,7 @@ 3.1.0 1.1.0 1.1.10.5 + 1.26.1 From ae60c03e69d1442ed5a5742102e8217d3fb689fc Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 13:52:28 +0200 Subject: [PATCH 80/96] chore(deps):[#463] Update dependencies --- DEPENDENCIES | 81 ++++++++++++++++++++++++++++------------------------ pom.xml | 22 +++++++------- 2 files changed, 55 insertions(+), 48 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 11b5ddd80f..4eafbb6309 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -11,15 +11,15 @@ maven/mavencentral/com.apicatalog/titanium-json-ld/1.3.2, Apache-2.0, approved, maven/mavencentral/com.carrotsearch.thirdparty/simple-xml-safe/2.7.1, Apache-2.0, approved, clearlydefined maven/mavencentral/com.damnhandy/handy-uri-templates/2.1.8, Apache-2.0, approved, clearlydefined maven/mavencentral/com.eatthepath/fast-uuid/0.2.0, MIT, approved, clearlydefined -maven/mavencentral/com.fasterxml.jackson.core/jackson-annotations/2.15.2, Apache-2.0, approved, #7947 maven/mavencentral/com.fasterxml.jackson.core/jackson-annotations/2.15.4, Apache-2.0, approved, #7947 -maven/mavencentral/com.fasterxml.jackson.core/jackson-core/2.15.2, MIT AND Apache-2.0, approved, #7932 +maven/mavencentral/com.fasterxml.jackson.core/jackson-annotations/2.16.1, Apache-2.0, approved, #11606 maven/mavencentral/com.fasterxml.jackson.core/jackson-core/2.15.4, MIT AND Apache-2.0, approved, #7932 +maven/mavencentral/com.fasterxml.jackson.core/jackson-core/2.16.1, Apache-2.0 AND MIT, approved, #11602 maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.15.1, Apache-2.0, approved, #7934 -maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.15.2, Apache-2.0, approved, #7934 maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.15.4, Apache-2.0, approved, #7934 -maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.15.1, Apache-2.0, approved, #8802 +maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.16.1, Apache-2.0, approved, #11605 maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.15.4, Apache-2.0, approved, #8802 +maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.16.2, Apache-2.0, approved, #11855 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jakarta-jsonp/2.15.2, Apache-2.0, approved, #9179 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jakarta-jsonp/2.15.4, Apache-2.0, approved, #9179 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.15.4, Apache-2.0, approved, #8808 @@ -30,19 +30,19 @@ maven/mavencentral/com.fasterxml.jackson.module/jackson-module-parameter-names/2 maven/mavencentral/com.fasterxml/classmate/1.5.1, Apache-2.0, approved, clearlydefined maven/mavencentral/com.github.ben-manes.caffeine/caffeine/3.1.8, Apache-2.0, approved, clearlydefined maven/mavencentral/com.github.docker-java/docker-java-api/3.3.0, Apache-2.0, approved, #10346 -maven/mavencentral/com.github.docker-java/docker-java-api/3.3.3, Apache-2.0, approved, #10346 +maven/mavencentral/com.github.docker-java/docker-java-api/3.3.6, Apache-2.0, approved, #10346 maven/mavencentral/com.github.docker-java/docker-java-transport-zerodep/3.3.0, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #7946 -maven/mavencentral/com.github.docker-java/docker-java-transport-zerodep/3.3.3, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #7946 +maven/mavencentral/com.github.docker-java/docker-java-transport-zerodep/3.3.6, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #7946 maven/mavencentral/com.github.docker-java/docker-java-transport/3.3.0, Apache-2.0, approved, #7942 -maven/mavencentral/com.github.docker-java/docker-java-transport/3.3.3, Apache-2.0, approved, #7942 +maven/mavencentral/com.github.docker-java/docker-java-transport/3.3.6, Apache-2.0, approved, #7942 maven/mavencentral/com.github.mifmif/generex/1.0.2, Apache-2.0, approved, clearlydefined maven/mavencentral/com.github.scopt/scopt_2.13/3.7.1, MIT, approved, clearlydefined maven/mavencentral/com.github.stephenc.jcip/jcip-annotations/1.0-1, Apache-2.0, approved, CQ21949 maven/mavencentral/com.google.code.findbugs/jsr305/3.0.2, Apache-2.0, approved, #20 -maven/mavencentral/com.google.errorprone/error_prone_annotations/2.18.0, Apache-2.0, approved, clearlydefined maven/mavencentral/com.google.errorprone/error_prone_annotations/2.21.1, Apache-2.0, approved, #9834 -maven/mavencentral/com.google.guava/failureaccess/1.0.1, Apache-2.0, approved, CQ22654 -maven/mavencentral/com.google.guava/guava/32.0.1-jre, Apache-2.0 AND CC0-1.0 AND CC-PDDC, approved, #8772 +maven/mavencentral/com.google.errorprone/error_prone_annotations/2.23.0, Apache-2.0, approved, #11083 +maven/mavencentral/com.google.guava/failureaccess/1.0.2, Apache-2.0, approved, CQ22654 +maven/mavencentral/com.google.guava/guava/33.0.0-jre, Apache-2.0 AND CC0-1.0, approved, #12173 maven/mavencentral/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava, Apache-2.0, approved, CQ22657 maven/mavencentral/com.google.j2objc/j2objc-annotations/2.8, Apache-2.0, approved, clearlydefined maven/mavencentral/com.ibm.icu/icu4j/74.2, , approved, #11936 @@ -55,7 +55,9 @@ maven/mavencentral/com.softwaremill.quicklens/quicklens_2.13/1.9.3, Apache-2.0, maven/mavencentral/com.squareup.okhttp3/okhttp-dnsoverhttps/4.10.0, Apache-2.0, approved, clearlydefined maven/mavencentral/com.squareup.okhttp3/okhttp-dnsoverhttps/4.11.0, Apache-2.0, approved, clearlydefined maven/mavencentral/com.squareup.okhttp3/okhttp/4.10.0, Apache-2.0 AND MPL-2.0, approved, #3057 +maven/mavencentral/com.squareup.okhttp3/okhttp/4.12.0, Apache-2.0, approved, #11156 maven/mavencentral/com.squareup.okio/okio-jvm/3.5.0, Apache-2.0, approved, #9851 +maven/mavencentral/com.squareup.okio/okio/3.6.0, Apache-2.0, approved, #11155 maven/mavencentral/com.tdunning/t-digest/3.1, Apache-2.0, approved, clearlydefined maven/mavencentral/com.typesafe.akka/akka-actor_2.13/2.6.20, Apache-2.0, approved, clearlydefined maven/mavencentral/com.typesafe.akka/akka-slf4j_2.13/2.6.20, Apache-2.0, approved, clearlydefined @@ -65,11 +67,14 @@ maven/mavencentral/com.vaadin.external.google/android-json/0.0.20131108.vaadin1, maven/mavencentral/com.vdurmont/semver4j/3.1.0, MIT, approved, clearlydefined maven/mavencentral/commons-beanutils/commons-beanutils/1.9.4, Apache-2.0, approved, CQ12654 maven/mavencentral/commons-codec/commons-codec/1.15, Apache-2.0 AND BSD-3-Clause AND LicenseRef-Public-Domain, approved, CQ22641 +maven/mavencentral/commons-codec/commons-codec/1.16.1, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #9157 maven/mavencentral/commons-collections/commons-collections/3.2.2, Apache-2.0, approved, CQ10385 maven/mavencentral/commons-digester/commons-digester/2.1, Apache-2.0, approved, clearlydefined -maven/mavencentral/commons-io/commons-io/2.14.0, Apache-2.0, approved, #10768 +maven/mavencentral/commons-io/commons-io/2.15.1, Apache-2.0, approved, #11244 +maven/mavencentral/commons-io/commons-io/2.16.1, Apache-2.0, approved, #14190 maven/mavencentral/commons-logging/commons-logging/1.2, Apache-2.0, approved, CQ10162 -maven/mavencentral/commons-validator/commons-validator/1.7, Apache-2.0, approved, clearlydefined +maven/mavencentral/commons-logging/commons-logging/1.3.0, Apache-2.0, approved, #11783 +maven/mavencentral/commons-validator/commons-validator/1.8.0, Apache-2.0, approved, #11891 maven/mavencentral/dev.failsafe/failsafe-okhttp/3.3.2, Apache-2.0, approved, #9178 maven/mavencentral/dev.failsafe/failsafe/3.3.2, Apache-2.0, approved, #9268 maven/mavencentral/dk.brics.automaton/automaton/1.11-8, BSD-2-Clause, approved, clearlydefined @@ -129,7 +134,7 @@ maven/mavencentral/io.micrometer/micrometer-commons/1.11.10, Apache-2.0 AND (Apa 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.minio/minio/8.5.9, 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 maven/mavencentral/io.netty.incubator/netty-incubator-transport-native-io_uring/0.0.21.Final, GPL-2.0-only WITH Linux-syscall-note OR MIT AND Apache-2.0 AND MIT, approved, #9649 maven/mavencentral/io.netty/netty-buffer/4.1.107.Final, Apache-2.0, approved, CQ21842 @@ -170,10 +175,10 @@ maven/mavencentral/io.rest-assured/rest-assured/5.4.0, Apache-2.0, approved, #12 maven/mavencentral/io.rest-assured/xml-path/5.3.2, Apache-2.0, approved, #9267 maven/mavencentral/io.rest-assured/xml-path/5.4.0, Apache-2.0, approved, #12038 maven/mavencentral/io.suzaku/boopickle_2.13/1.3.3, Apache-2.0, approved, clearlydefined -maven/mavencentral/io.swagger.core.v3/swagger-annotations-jakarta/2.2.15, Apache-2.0, approved, #5947 -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/io.swagger.core.v3/swagger-annotations-jakarta/2.2.21, Apache-2.0, approved, #5947 +maven/mavencentral/io.swagger.core.v3/swagger-annotations/2.2.18, Apache-2.0, approved, #11362 +maven/mavencentral/io.swagger.core.v3/swagger-core-jakarta/2.2.21, Apache-2.0, approved, #5929 +maven/mavencentral/io.swagger.core.v3/swagger-models-jakarta/2.2.21, Apache-2.0, approved, #5919 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 @@ -191,22 +196,24 @@ maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.12, Apache-2.0, approved, maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.4, Apache-2.0, approved, #7164 maven/mavencentral/net.bytebuddy/byte-buddy/1.12.21, Apache-2.0 AND BSD-3-Clause, approved, #1811 maven/mavencentral/net.bytebuddy/byte-buddy/1.14.12, Apache-2.0 AND BSD-3-Clause, approved, #7163 -maven/mavencentral/net.datafaker/datafaker/1.9.0, Apache-2.0, approved, #8797 +maven/mavencentral/net.datafaker/datafaker/2.1.0, , restricted, clearlydefined maven/mavencentral/net.debasishg/redisclient_2.13/3.42, Apache-2.0, approved, clearlydefined maven/mavencentral/net.java.dev.jna/jna/5.12.1, Apache-2.0 OR LGPL-2.1-or-later, approved, #3217 -maven/mavencentral/net.javacrumbs.json-unit/json-unit-assertj/2.36.1, Apache-2.0, approved, clearlydefined -maven/mavencentral/net.javacrumbs.json-unit/json-unit-core/2.36.1, Apache-2.0, approved, clearlydefined -maven/mavencentral/net.javacrumbs.json-unit/json-unit-json-path/2.36.1, Apache-2.0, approved, clearlydefined +maven/mavencentral/net.java.dev.jna/jna/5.13.0, Apache-2.0 AND LGPL-2.1-or-later, approved, #6709 +maven/mavencentral/net.javacrumbs.json-unit/json-unit-assertj/3.2.7, Apache-2.0, approved, clearlydefined +maven/mavencentral/net.javacrumbs.json-unit/json-unit-core/3.2.7, Apache-2.0, approved, clearlydefined +maven/mavencentral/net.javacrumbs.json-unit/json-unit-json-path/3.2.7, Apache-2.0, approved, clearlydefined maven/mavencentral/net.jimblackler.jsonschemafriend/core/0.12.4, Apache-2.0, approved, #10911 maven/mavencentral/net.jimblackler.jsonschemafriend/extra/0.12.4, Apache-2.0, approved, #10910 maven/mavencentral/net.jimblackler/jsonschemafriend/0.12.4, Apache-2.0, approved, #10912 maven/mavencentral/net.jodah/typetools/0.6.3, Apache-2.0, approved, clearlydefined maven/mavencentral/net.minidev/accessors-smart/2.4.11, Apache-2.0, approved, #7515 -maven/mavencentral/net.minidev/accessors-smart/2.4.9, Apache-2.0, approved, #7515 -maven/mavencentral/net.minidev/json-smart/2.4.10, Apache-2.0, approved, #3288 +maven/mavencentral/net.minidev/accessors-smart/2.5.1, Apache-2.0, approved, clearlydefined maven/mavencentral/net.minidev/json-smart/2.4.11, Apache-2.0, approved, #3288 +maven/mavencentral/net.minidev/json-smart/2.5.1, Apache-2.0, approved, clearlydefined 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-compress/1.26.0, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #13288 +maven/mavencentral/org.apache.commons/commons-compress/1.26.1, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #13288 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.20, Apache-2.0, approved, #7411 @@ -228,12 +235,12 @@ maven/mavencentral/org.aspectj/aspectjweaver/1.9.21, Apache-2.0 AND BSD-3-Clause 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, #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 +maven/mavencentral/org.bouncycastle/bcprov-jdk18on/1.77, MIT AND CC0-1.0, approved, #11595 maven/mavencentral/org.bouncycastle/bcutil-jdk18on/1.76, MIT, approved, #9828 maven/mavencentral/org.ccil.cowan.tagsoup/tagsoup/1.2.1, Apache-2.0, approved, clearlydefined -maven/mavencentral/org.checkerframework/checker-qual/3.33.0, MIT, approved, clearlydefined maven/mavencentral/org.checkerframework/checker-qual/3.37.0, MIT, approved, clearlydefined +maven/mavencentral/org.checkerframework/checker-qual/3.41.0, MIT, approved, #12032 maven/mavencentral/org.eclipse.edc/aggregate-service-spi/0.2.1, Apache-2.0, approved, technology.edc maven/mavencentral/org.eclipse.edc/asset-spi/0.2.1, Apache-2.0, approved, technology.edc maven/mavencentral/org.eclipse.edc/catalog-spi/0.2.1, Apache-2.0, approved, technology.edc @@ -371,11 +378,11 @@ maven/mavencentral/org.jboss.logging/jboss-logging/3.4.3.Final, Apache-2.0, appr 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, #14186 +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.8.21, Apache-2.0, approved, #8807 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, #14193 +maven/mavencentral/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.8.21, Apache-2.0, approved, #8919 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, #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.21, Apache-2.0, approved, #8865 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 maven/mavencentral/org.jetbrains/annotations/17.0.0, Apache-2.0, approved, clearlydefined @@ -384,7 +391,7 @@ maven/mavencentral/org.jodd/jodd-lagarto/6.0.6, BSD-2-Clause, approved, clearlyd maven/mavencentral/org.jodd/jodd-util/6.1.0, BSD-2-Clause, approved, clearlydefined maven/mavencentral/org.jruby.jcodings/jcodings/1.0.58, MIT, approved, CQ10635 maven/mavencentral/org.jruby.joni/joni/2.2.1, MIT, approved, #8771 -maven/mavencentral/org.jsoup/jsoup/1.16.1, MIT, approved, #8462 +maven/mavencentral/org.jsoup/jsoup/1.17.2, MIT AND Apache-2.0, approved, #11785 maven/mavencentral/org.junit.jupiter/junit-jupiter-api/5.9.2, EPL-2.0, approved, #3133 maven/mavencentral/org.junit.jupiter/junit-jupiter-api/5.9.3, EPL-2.0, approved, #3133 maven/mavencentral/org.junit.jupiter/junit-jupiter-engine/5.9.2, EPL-2.0, approved, #3125 @@ -423,9 +430,9 @@ maven/mavencentral/org.simpleflatmapper/sfm-util/8.2.3, MIT, approved, clearlyde maven/mavencentral/org.skyscreamer/jsonassert/1.5.1, Apache-2.0, approved, clearlydefined maven/mavencentral/org.slf4j/jul-to-slf4j/2.0.12, MIT, approved, #7698 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.springdoc/springdoc-openapi-starter-common/2.5.0, , restricted, clearlydefined +maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-api/2.5.0, , restricted, clearlydefined +maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0, , restricted, clearlydefined 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 @@ -465,13 +472,13 @@ maven/mavencentral/org.springframework/spring-test/6.0.18, Apache-2.0, approved, 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/junit-jupiter/1.19.7, MIT, approved, #10344 maven/mavencentral/org.testcontainers/testcontainers/1.18.3, MIT, approved, #7938 -maven/mavencentral/org.testcontainers/testcontainers/1.19.1, Apache-2.0 AND MIT, approved, #10347 +maven/mavencentral/org.testcontainers/testcontainers/1.19.7, Apache-2.0 AND MIT, approved, #10347 maven/mavencentral/org.typelevel/spire-macros_2.13/0.17.0, MIT, approved, clearlydefined maven/mavencentral/org.unbescape/unbescape/1.1.6.RELEASE, Apache-2.0, approved, CQ18904 -maven/mavencentral/org.webjars/swagger-ui/5.2.0, Apache-2.0, approved, #10221 -maven/mavencentral/org.wiremock/wiremock-standalone/3.3.1, MIT AND Apache-2.0, approved, #12941 +maven/mavencentral/org.webjars/swagger-ui/5.13.0, , restricted, clearlydefined +maven/mavencentral/org.wiremock/wiremock-standalone/3.5.2, , restricted, clearlydefined maven/mavencentral/org.xerial.snappy/snappy-java/1.1.10.5, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #9098 maven/mavencentral/org.xmlunit/xmlunit-core/2.9.1, Apache-2.0, approved, #6272 maven/mavencentral/org.yaml/snakeyaml/1.33, Apache-2.0, approved, clearlydefined diff --git a/pom.xml b/pom.xml index da33f6f13c..80dddafb21 100644 --- a/pom.xml +++ b/pom.xml @@ -77,10 +77,10 @@ 3.1.10 - 2.2.0 + 2.5.0 1.11.4 - 1.9.0 - 2.36.1 + 2.1.0 + 3.2.7 3.9.5 2.1.0 8.5.9 @@ -90,21 +90,21 @@ 5.9.2 7.11.1 2.0 - 1.7 - 2.2.16 + 1.8.0 + 2.2.18 0.2.1 3.5.0 1.76 - 3.3.1 - 1.16.1 + 3.5.2 + 1.17.2 0.12.4 - 2.14.0 + 2.16.1 3.12.0 - 4.10.0 + 4.12.0 2.15.1 5.9.2 - 2.4.10 - 1.19.1 + 2.5.1 + 1.19.7 1.12.0 From 0a24a51596dbec4192a83a2b8af24bec6f5135ce Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:24:19 +0200 Subject: [PATCH 81/96] chore(deps):[#463] Revert dependency update --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 80dddafb21..c65ebb9902 100644 --- a/pom.xml +++ b/pom.xml @@ -77,9 +77,9 @@ 3.1.10 - 2.5.0 + 2.2.0 1.11.4 - 2.1.0 + 1.9.0 3.2.7 3.9.5 2.1.0 From 736b8e63e4805120858af84fd136880d9652f062 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:25:19 +0200 Subject: [PATCH 82/96] chore(deps):[#463] Manually update nimbus-jose-jwt to fix CVE --- DEPENDENCIES | 22 +++++++++++----------- irs-api/pom.xml | 10 ++++++++++ 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 4eafbb6309..8fd1e3d811 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -18,8 +18,8 @@ maven/mavencentral/com.fasterxml.jackson.core/jackson-core/2.16.1, Apache-2.0 AN maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.15.1, Apache-2.0, approved, #7934 maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.15.4, Apache-2.0, approved, #7934 maven/mavencentral/com.fasterxml.jackson.core/jackson-databind/2.16.1, Apache-2.0, approved, #11605 +maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.15.1, Apache-2.0, approved, #8802 maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.15.4, Apache-2.0, approved, #8802 -maven/mavencentral/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.16.2, Apache-2.0, approved, #11855 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jakarta-jsonp/2.15.2, Apache-2.0, approved, #9179 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jakarta-jsonp/2.15.4, Apache-2.0, approved, #9179 maven/mavencentral/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.15.4, Apache-2.0, approved, #8808 @@ -49,7 +49,7 @@ maven/mavencentral/com.ibm.icu/icu4j/74.2, , approved, #11936 maven/mavencentral/com.jayway.jsonpath/json-path/2.9.0, Apache-2.0, approved, clearlydefined maven/mavencentral/com.nimbusds/content-type/2.2, Apache-2.0, approved, clearlydefined maven/mavencentral/com.nimbusds/lang-tag/1.7, Apache-2.0, approved, clearlydefined -maven/mavencentral/com.nimbusds/nimbus-jose-jwt/9.24.4, Apache-2.0, approved, clearlydefined +maven/mavencentral/com.nimbusds/nimbus-jose-jwt/9.37.3, Apache-2.0, approved, #11701 maven/mavencentral/com.nimbusds/oauth2-oidc-sdk/9.43.3, Apache-2.0, approved, clearlydefined maven/mavencentral/com.softwaremill.quicklens/quicklens_2.13/1.9.3, Apache-2.0, approved, #9635 maven/mavencentral/com.squareup.okhttp3/okhttp-dnsoverhttps/4.10.0, Apache-2.0, approved, clearlydefined @@ -175,10 +175,10 @@ maven/mavencentral/io.rest-assured/rest-assured/5.4.0, Apache-2.0, approved, #12 maven/mavencentral/io.rest-assured/xml-path/5.3.2, Apache-2.0, approved, #9267 maven/mavencentral/io.rest-assured/xml-path/5.4.0, Apache-2.0, approved, #12038 maven/mavencentral/io.suzaku/boopickle_2.13/1.3.3, Apache-2.0, approved, clearlydefined -maven/mavencentral/io.swagger.core.v3/swagger-annotations-jakarta/2.2.21, Apache-2.0, approved, #5947 +maven/mavencentral/io.swagger.core.v3/swagger-annotations-jakarta/2.2.15, Apache-2.0, approved, #5947 maven/mavencentral/io.swagger.core.v3/swagger-annotations/2.2.18, Apache-2.0, approved, #11362 -maven/mavencentral/io.swagger.core.v3/swagger-core-jakarta/2.2.21, Apache-2.0, approved, #5929 -maven/mavencentral/io.swagger.core.v3/swagger-models-jakarta/2.2.21, Apache-2.0, approved, #5919 +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.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 @@ -196,7 +196,7 @@ maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.12, Apache-2.0, approved, maven/mavencentral/net.bytebuddy/byte-buddy-agent/1.14.4, Apache-2.0, approved, #7164 maven/mavencentral/net.bytebuddy/byte-buddy/1.12.21, Apache-2.0 AND BSD-3-Clause, approved, #1811 maven/mavencentral/net.bytebuddy/byte-buddy/1.14.12, Apache-2.0 AND BSD-3-Clause, approved, #7163 -maven/mavencentral/net.datafaker/datafaker/2.1.0, , restricted, clearlydefined +maven/mavencentral/net.datafaker/datafaker/1.9.0, Apache-2.0, approved, #8797 maven/mavencentral/net.debasishg/redisclient_2.13/3.42, Apache-2.0, approved, clearlydefined maven/mavencentral/net.java.dev.jna/jna/5.12.1, Apache-2.0 OR LGPL-2.1-or-later, approved, #3217 maven/mavencentral/net.java.dev.jna/jna/5.13.0, Apache-2.0 AND LGPL-2.1-or-later, approved, #6709 @@ -430,9 +430,9 @@ maven/mavencentral/org.simpleflatmapper/sfm-util/8.2.3, MIT, approved, clearlyde maven/mavencentral/org.skyscreamer/jsonassert/1.5.1, Apache-2.0, approved, clearlydefined maven/mavencentral/org.slf4j/jul-to-slf4j/2.0.12, MIT, approved, #7698 maven/mavencentral/org.slf4j/slf4j-api/2.0.12, MIT, approved, #5915 -maven/mavencentral/org.springdoc/springdoc-openapi-starter-common/2.5.0, , restricted, clearlydefined -maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-api/2.5.0, , restricted, clearlydefined -maven/mavencentral/org.springdoc/springdoc-openapi-starter-webmvc-ui/2.5.0, , restricted, clearlydefined +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.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 @@ -477,8 +477,8 @@ maven/mavencentral/org.testcontainers/testcontainers/1.18.3, MIT, approved, #793 maven/mavencentral/org.testcontainers/testcontainers/1.19.7, Apache-2.0 AND MIT, approved, #10347 maven/mavencentral/org.typelevel/spire-macros_2.13/0.17.0, MIT, approved, clearlydefined maven/mavencentral/org.unbescape/unbescape/1.1.6.RELEASE, Apache-2.0, approved, CQ18904 -maven/mavencentral/org.webjars/swagger-ui/5.13.0, , restricted, clearlydefined -maven/mavencentral/org.wiremock/wiremock-standalone/3.5.2, , restricted, clearlydefined +maven/mavencentral/org.webjars/swagger-ui/5.2.0, Apache-2.0, approved, #10221 +maven/mavencentral/org.wiremock/wiremock-standalone/3.5.2, MIT AND Apache-2.0, approved, #14258 maven/mavencentral/org.xerial.snappy/snappy-java/1.1.10.5, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #9098 maven/mavencentral/org.xmlunit/xmlunit-core/2.9.1, Apache-2.0, approved, #6272 maven/mavencentral/org.yaml/snakeyaml/1.33, Apache-2.0, approved, clearlydefined diff --git a/irs-api/pom.xml b/irs-api/pom.xml index 049bd3a511..f5fc91b2b0 100644 --- a/irs-api/pom.xml +++ b/irs-api/pom.xml @@ -96,8 +96,18 @@ json-smart net.minidev + + nimbus-jose-jwt + com.nimbusds + + + + com.nimbusds + nimbus-jose-jwt + 9.37.3 + org.springframework.boot spring-boot-starter-security From d60149045203650c8eadb005e50bc4667bd0a2d2 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:35:13 +0200 Subject: [PATCH 83/96] chore(ci):[#463] Fix quality check scan issue --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad62273994..f795367e8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,14 +51,11 @@ RUN --mount=type=cache,target=/root/.m2 mvn -B clean package -pl :$BUILD_TARGET # Copy the jar and build image FROM eclipse-temurin:17-jre-alpine AS irs-api -ARG UID=10000 -ARG GID=3000 - WORKDIR /app COPY --chmod=755 --from=maven /build/irs-api/target/irs-api-*-exec.jar app.jar -USER ${UID}:${GID} +USER 10000:3000 ENTRYPOINT ["java", "-Djava.util.logging.config.file=./logging.properties", "-jar", "app.jar"] From e55f33efde5094c53784646dc6df78632bcec2da Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:36:48 +0200 Subject: [PATCH 84/96] chore(workflows):[#463] Cleanup trivyignore --- .config/.trivyignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/.trivyignore b/.config/.trivyignore index 9102906970..3f8a9914b4 100644 --- a/.config/.trivyignore +++ b/.config/.trivyignore @@ -1,8 +1,8 @@ # Only relevant if UNWRAP_SINGLE_VALUE_ARRAYS is activated, which is not the case here. -CVE-2022-42003 +#CVE-2022-42003 # HttpInvokerServiceExporter is not loaded as a bean in the IRS. -CVE-2016-1000027 +#CVE-2016-1000027 # Vulnerability method not in IRS codebase (Files.createTempDir from guava). https://github.com/google/guava/issues/2575 -CVE-2023-2976 \ No newline at end of file +#CVE-2023-2976 From 7f748b83fa373363e165ee461df107e903d347b2 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:41:00 +0200 Subject: [PATCH 85/96] chore(workflows):[#463] Cleanup trivyignore --- .github/workflows/trivy-image-scan.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/trivy-image-scan.yml b/.github/workflows/trivy-image-scan.yml index 0acd9c7e1a..28cc0e7678 100644 --- a/.github/workflows/trivy-image-scan.yml +++ b/.github/workflows/trivy-image-scan.yml @@ -60,6 +60,7 @@ jobs: output: "trivy-results2.sarif" exit-code: "1" severity: "CRITICAL,HIGH" + hide-progress: false trivyignores: .config/.trivyignore - name: Upload Trivy scan results to GitHub Security tab From 969dbaf8134c93b20345353bfc0dbf2c16180113 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:44:32 +0200 Subject: [PATCH 86/96] chore(workflows):[#463] Cleanup trivyignore --- .config/.trivyignore | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.config/.trivyignore b/.config/.trivyignore index 3f8a9914b4..e69de29bb2 100644 --- a/.config/.trivyignore +++ b/.config/.trivyignore @@ -1,8 +0,0 @@ -# Only relevant if UNWRAP_SINGLE_VALUE_ARRAYS is activated, which is not the case here. -#CVE-2022-42003 - -# HttpInvokerServiceExporter is not loaded as a bean in the IRS. -#CVE-2016-1000027 - -# Vulnerability method not in IRS codebase (Files.createTempDir from guava). https://github.com/google/guava/issues/2575 -#CVE-2023-2976 From d4977cd822ef1b904e118c4bfe6d2a4ef745335e Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 14:56:00 +0200 Subject: [PATCH 87/96] chore(workflows):[#463] Cleanup trivyignore --- .github/workflows/trivy-image-scan.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/trivy-image-scan.yml b/.github/workflows/trivy-image-scan.yml index 28cc0e7678..0acd9c7e1a 100644 --- a/.github/workflows/trivy-image-scan.yml +++ b/.github/workflows/trivy-image-scan.yml @@ -60,7 +60,6 @@ jobs: output: "trivy-results2.sarif" exit-code: "1" severity: "CRITICAL,HIGH" - hide-progress: false trivyignores: .config/.trivyignore - name: Upload Trivy scan results to GitHub Security tab From d2f8834c1bc64280b518b23b70fa5218baa1ff07 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 10 Apr 2024 17:32:18 +0200 Subject: [PATCH 88/96] chore(cucumber):[#357] ignore contractAgreementId on expected file comparison --- .../eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java b/irs-cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java index de5baf0154..c4c4aa7eed 100644 --- a/irs-cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java +++ b/irs-cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java @@ -385,7 +385,7 @@ public void iCheckIfAreAsExpected(String valueType, String fileName) throws IOEx final List actualSubmodels = completedJob.getSubmodels(); final List expectedSubmodels = getExpectedSubmodels(fileName); assertThat(actualSubmodels).hasSameSizeAs(expectedSubmodels) - .usingRecursiveFieldByFieldElementComparatorIgnoringFields("identification") + .usingRecursiveFieldByFieldElementComparatorIgnoringFields("identification", "contractAgreementId") .containsAll(expectedSubmodels); } } From 66d46ac9d8c766a30d3ad8b55bea7f9175ad1703 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 11 Apr 2024 11:23:56 +0200 Subject: [PATCH 89/96] chore(irs-api):[#357] Add json aliases to relationship aspects --- .../tractusx/irs/edc/client/SingleLevelBomAsPlanned.java | 3 +++ .../tractusx/irs/edc/client/SingleLevelBomAsSpecified.java | 3 +++ .../tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java | 3 +++ 3 files changed, 9 insertions(+) diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java index a8357f66e9..a9c65c9532 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java @@ -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; @@ -121,7 +122,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/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsSpecified.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsSpecified.java index 427ffabdac..9f5277a9c9 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsSpecified.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsSpecified.java @@ -29,6 +29,7 @@ import java.util.Optional; import java.util.Set; +import com.fasterxml.jackson.annotation.JsonAlias; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -119,7 +120,9 @@ public Relationship toRelationship(final String catenaXId) { @Data @Jacksonized /* package */ static class PartQuantity { + @JsonAlias({ "quantityNumber", "value" }) private Double quantityNumber; + @JsonAlias({ "measurementUnit", "unit" }) private String measurementUnit; } } diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java index fb14cdf855..411dc4023c 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java @@ -29,6 +29,7 @@ import java.util.Optional; import java.util.Set; +import com.fasterxml.jackson.annotation.JsonAlias; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; @@ -128,7 +129,9 @@ private boolean thereIsQuantity() { @Jacksonized /* package */ static class Quantity { + @JsonAlias({ "quantityNumber", "value" }) private Double quantityNumber; + @JsonAlias({ "measurementUnit", "unit" }) private String measurementUnit; } From 00d80948472a1ecfd0c1911a18cdeb26dd0cb378 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 11 Apr 2024 13:18:13 +0200 Subject: [PATCH 90/96] chore(cucumber):[#357] Update expected files --- .../TRI-821-expected-relationships.json | 66 +- .../TRI-821-expected-submodels.json | 316 +- .../TRI-891-expected-relationships.json | 42 +- .../TRI-891-expected-submodels.json | 266 +- .../TRI-983-expected-relationships.json | 2898 +----- .../TRI-983-expected-submodels.json | 9202 +---------------- 6 files changed, 635 insertions(+), 12155 deletions(-) diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json index 6c57ccb25e..d3232fc233 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json @@ -7,7 +7,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -26,7 +26,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -45,7 +45,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -64,7 +64,7 @@ "quantityNumber": 6.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -83,7 +83,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -102,7 +102,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -115,29 +115,29 @@ "bpn": "BPNL00000003B3NX" }, { - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "linkedItem": { "quantity": { - "quantityNumber": 10.0, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "childCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AYRE" + "bpn": "BPNL00000003B3NX" }, { - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "linkedItem": { "quantity": { - "quantityNumber": 0.11, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": null, "lexicalValue": "unit:kilogram" @@ -146,87 +146,87 @@ "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", "bpn": "BPNL00000003AXS3" }, { - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 10.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "childCatenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.11, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "childCatenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AXS3" }, { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childCatenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003B0Q0" }, { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", "linkedItem": { "quantity": { "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "childCatenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003B0Q0" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-submodels.json index 0f35961349..a8af90987c 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-submodels.json @@ -1,227 +1,297 @@ { "submodels": [ { - "identification": "urn:uuid:38119628-6ebb-4ed6-adfd-76c1bcc3ab03", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:6e6834a3-6343-4c23-926a-2c37d3197fa3", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:da5df2c0-d647-4f54-979f-46a787d8f9b2", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:034a516c-9920-4997-8b40-f7e595c2ff49", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:77a0c9ff-e3dd-48c2-9e02-1db13d0b749f", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:7b795601-bbd2-4b0a-954b-5f70c87fafc3", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:2c9133be-23bc-4659-bcc8-85c3af2373a1", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:b889b852-3c9c-4933-bc8f-13d9f3edd08a", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "validityPeriod": { - "validFrom": "2018-01-25T08:42:58.000Z", - "validTo": "2029-02-10T03:24:30.000Z" + "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" + } + ] + } + }, + { + "identification": "urn:uuid:2e8ea560-693d-4755-83b6-03e111975f71", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", + "payload": { "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" + } + ] } }, { - "identification": "urn:uuid:8fae2932-6253-4bed-9bc4-e37bd15a6abe", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:8dd549bf-1fc4-4ec7-87b3-d652293a73df", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:1b95e1b8-5851-4a14-a3d7-224e277f6343", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:f1e6c9ff-9177-4d6a-8b62-be3a3a889808", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } - } - }, - { - "identification": "urn:uuid:c9d3ed4f-9861-4575-a213-3b0451df31e5", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", - "payload": { - "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" - } + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:ab276568-e88c-4dcf-98f8-17cf49ca50b6", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:f1e6c9ff-9177-4d6a-8b62-be3a3a889808", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2016-04-28T20:00:55.000Z", - "validTo": "2027-04-27T00:59:41.000Z" - }, - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "partTypeInformation": { - "manufacturerPartId": "8840374-09", + "manufacturerPartId": "6740244-02", "classification": "product", - "nameAtManufacturer": "ZB ZELLE" - } + "nameAtManufacturer": "Sub Tier A Sensor" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:1cb28547-5772-4515-abca-cb6e8ce435d2", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:8d3e53b6-f562-466b-8b90-4cee6e8cd88e", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2013-11-24T00:27:33.000Z", - "validTo": "2025-08-16T09:18:35.000Z" - }, - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "partTypeInformation": { - "manufacturerPartId": "7A047C7-01", + "manufacturerPartId": "6775244-06", "classification": "product", - "nameAtManufacturer": "N Tier A CathodeMaterial" - } + "nameAtManufacturer": "Sub Tier B Glue" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:9051fe9c-b8a3-4090-a324-d3933209c5a0", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:93a7b6eb-3896-4a79-9a87-1327addb5981", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", "payload": { - "validityPeriod": { - "validFrom": "2016-04-24T08:26:56.000Z", - "validTo": "2031-12-17T23:55:04.000Z" - }, - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", "partTypeInformation": { - "manufacturerPartId": "ZX-55", + "manufacturerPartId": "9A047C7-01", "classification": "product", - "nameAtManufacturer": "Tier B ECU1" - } + "nameAtManufacturer": "Sub Tier B Sealant" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:879aef49-f000-4f1a-b749-def9d4807b22", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:117ee062-7a3a-4120-8613-b327d2453d60", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "validityPeriod": { - "validFrom": "2019-08-17T14:14:30.000Z", - "validTo": "2032-08-30T04:32:28.000Z" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", "partTypeInformation": { - "manufacturerPartId": "6775244-06", + "manufacturerPartId": "8840374-09", "classification": "product", - "nameAtManufacturer": "Sub Tier B Glue" - } + "nameAtManufacturer": "ZB ZELLE" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:1b95e1b8-5851-4a14-a3d7-224e277f6343", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:ed6d30aa-a729-496f-a647-cc5a7d14a924", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2013-06-18T03:47:22.000Z", - "validTo": "2030-12-31T23:33:25.000Z" - }, - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "partTypeInformation": { - "manufacturerPartId": "6740244-02", + "manufacturerPartId": "7A047KK-01", "classification": "product", - "nameAtManufacturer": "Sub Tier A Sensor" - } + "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" + } + ] } }, { - "identification": "urn:uuid:24c7293b-3ffb-4549-91c7-c4642cc99824", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:ed6d30aa-a729-496f-a647-cc5a7d14a924", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:24c7293b-3ffb-4549-91c7-c4642cc99824", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:dc1c71be-03c9-40a3-9537-d67267d39a47", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2019-01-02T09:42:18.000Z", - "validTo": "2031-05-02T13:45:12.000Z" - }, - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "partTypeInformation": { - "manufacturerPartId": "7A047KK-01", + "manufacturerPartId": "7A047C7-01", "classification": "product", - "nameAtManufacturer": "N Tier A NTier 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" + } + ] } } ] diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json index 2198e8d422..f7749c3f1a 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json @@ -7,7 +7,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -26,7 +26,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -45,7 +45,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -58,70 +58,70 @@ "bpn": "BPNL50096894aNXY" }, { - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "linkedItem": { "quantity": { "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003B3NX" }, { - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AXS3" }, { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childCatenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003B0Q0" }, { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "linkedItem": { "quantity": { "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -159,7 +159,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -178,7 +178,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-submodels.json index ab86f508a7..020b206dca 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-submodels.json @@ -1,195 +1,255 @@ { "submodels": [ { - "identification": "urn:uuid:573cbd7e-9e3c-49ee-beb3-782ca2b9a9f5", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:d99757e3-88df-494d-bf8f-5596c4e34a50", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:77a0c9ff-e3dd-48c2-9e02-1db13d0b749f", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:b889b852-3c9c-4933-bc8f-13d9f3edd08a", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "validityPeriod": { - "validFrom": "2017-07-03T05:23:01.000Z", - "validTo": "2032-09-25T10:26:27.000Z" - }, - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "partTypeInformation": { - "manufacturerPartId": "32494586-73", + "manufacturerPartId": "ZX-55", "classification": "product", - "nameAtManufacturer": "Tier A Gearbox" - } + "nameAtManufacturer": "Tier B ECU1" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:9051fe9c-b8a3-4090-a324-d3933209c5a0", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:7b795601-bbd2-4b0a-954b-5f70c87fafc3", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "validityPeriod": { - "validFrom": "2016-04-24T08:26:56.000Z", - "validTo": "2031-12-17T23:55:04.000Z" - }, - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "partTypeInformation": { - "manufacturerPartId": "ZX-55", + "manufacturerPartId": "32494586-73", "classification": "product", - "nameAtManufacturer": "Tier B ECU1" - } + "nameAtManufacturer": "Tier A Gearbox" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:6692c07a-6771-48a2-a729-331d1a488037", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:c99f9a4d-8d9e-4791-b3d0-cd657de6f831", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", "payload": { - "validityPeriod": { - "validFrom": "2019-11-02T11:14:15.000Z", - "validTo": "2024-07-17T02:07:07.000Z" - }, "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", "partTypeInformation": { "manufacturerPartId": "123564887-01", "classification": "product", "nameAtManufacturer": "Tire Model A" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:1b95e1b8-5851-4a14-a3d7-224e277f6343", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:8d3e53b6-f562-466b-8b90-4cee6e8cd88e", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2013-06-18T03:47:22.000Z", - "validTo": "2030-12-31T23:33:25.000Z" - }, - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "partTypeInformation": { - "manufacturerPartId": "6740244-02", + "manufacturerPartId": "6775244-06", "classification": "product", - "nameAtManufacturer": "Sub Tier A Sensor" - } + "nameAtManufacturer": "Sub Tier B Glue" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:1b95e1b8-5851-4a14-a3d7-224e277f6343", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:8dd549bf-1fc4-4ec7-87b3-d652293a73df", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", "payload": { - "validityPeriod": { - "validFrom": "2013-06-18T03:47:22.000Z", - "validTo": "2030-12-31T23:33:25.000Z" + "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" + } + ] + } + }, + { + "identification": "urn:uuid:f1e6c9ff-9177-4d6a-8b62-be3a3a889808", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", + "payload": { "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" + } + ] } }, { - "identification": "urn:uuid:879aef49-f000-4f1a-b749-def9d4807b22", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:f1e6c9ff-9177-4d6a-8b62-be3a3a889808", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2019-08-17T14:14:30.000Z", - "validTo": "2032-08-30T04:32:28.000Z" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "partTypeInformation": { - "manufacturerPartId": "6775244-06", + "manufacturerPartId": "6740244-02", "classification": "product", - "nameAtManufacturer": "Sub Tier B Glue" - } + "nameAtManufacturer": "Sub Tier A Sensor" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:bcfeab97-b97b-47c4-8fae-9f88e83d4579", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:99383b75-05ab-428b-b7f1-95dd1c14bd7f", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", "payload": { - "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)" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:24c7293b-3ffb-4549-91c7-c4642cc99824", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:ed6d30aa-a729-496f-a647-cc5a7d14a924", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:24c7293b-3ffb-4549-91c7-c4642cc99824", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:ed6d30aa-a729-496f-a647-cc5a7d14a924", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "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" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:374b82cd-8038-4feb-8ae8-f9907c082623", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:e1232890-4e1c-49df-b826-673faaf38978", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", "payload": { - "validityPeriod": { - "validFrom": "2014-02-07T16:56:02.000Z", - "validTo": "2029-08-26T11:05:18.000Z" - }, "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", "partTypeInformation": { "manufacturerPartId": "A26581-11", "classification": "product", "nameAtManufacturer": "Natural Rubber" - } - } - }, - { - "identification": "urn:uuid:8fae2932-6253-4bed-9bc4-e37bd15a6abe", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", - "payload": { - "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" - } + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } } ] diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json index 6f1c976982..c3b978949d 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json @@ -1,2803 +1,99 @@ { - "relationships" : [ { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3ffa97ff-b3a7-4946-804b-0a9a2268a285" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:11d3b806-9c7c-475f-8a96-c83869acf90b" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4d2b3c50-d184-49b7-abee-c15e2416d360" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b461b27e-e90e-404d-8d1d-2ba4668fe826" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05" - }, - "aspectType" : "AssemblyPartRelationship" - }, { - "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 1.0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45" - }, - "aspectType" : "AssemblyPartRelationship" - } ] + "relationships": [ + { + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "linkedItem": { + "quantity": { + "quantityNumber": 1.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asPlanned", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsPlanned", + "bpn": "BPNL00000003B5MJ" + }, + { + "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "linkedItem": { + "quantity": { + "quantityNumber": 1.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asPlanned", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsPlanned", + "bpn": "BPNL50096894aNXY" + }, + { + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "linkedItem": { + "quantity": { + "quantityNumber": 1.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asPlanned", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsPlanned", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "linkedItem": { + "quantity": { + "quantityNumber": 1580.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:gram" + } + }, + "lifecycleContext": "asPlanned", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsPlanned", + "bpn": "BPNL50096894aNXY" + }, + { + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "linkedItem": { + "quantity": { + "quantityNumber": 1.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asPlanned", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsPlanned", + "bpn": "BPNL50096894aNXY" + } + ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json index ad0174d2fb..f4b42ce9c3 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json @@ -1,9076 +1,130 @@ { - "submodels" : [ { - "identification" : "18bf3919-4c59-43b5-a0d2-2d97a3c6c29b", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67" - } ] - } - }, { - "identification" : "35cc4b13-dbe8-4305-b8b6-4df951db1ac0", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "QM-11", - "key" : "manufacturerPartId" - }, { - "value" : "OMBNQDTDYELARLXEJ", - "key" : "partInstanceId" - }, { - "value" : "OMBNQDTDYELARLXEJ", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2014-12-25T13:05:34.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", - "partTypeInformation" : { - "manufacturerPartId" : "QM-11", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Fully Electric" - } - } - }, { - "identification" : "5719f37e-5aaf-4ea6-83a0-23d736d45fd7", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Iron", - "recycledContent" : 17, - "materialClass" : "1.1", - "quantity" : { - "materialValue" : 327.6, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "IR334" - }, { - "materialName" : "Polyethylen", - "recycledContent" : 47, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 163.8, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PE221" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 28, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 40.95, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Aluminium", - "recycledContent" : 0, - "materialClass" : "2.1", - "quantity" : { - "materialValue" : 286.65, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "ALU331" - }, { - "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 49, - "materialClass" : "0.7", - "quantity" : { - "materialValue" : 109.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "W123" - }, { - "materialName" : "Glue", - "recycledContent" : 3, - "materialClass" : "6.2", - "quantity" : { - "materialValue" : 54.6, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 44, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 382.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Cooper", - "recycledContent" : 89, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 250.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Rubber", - "recycledContent" : 75, - "materialClass" : "5.3", - "quantity" : { - "materialValue" : 7.8, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "R22" - }, { - "materialName" : "Textiles", - "recycledContent" : 20, - "materialClass" : "5.5.2", - "quantity" : { - "materialValue" : 5.12, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "TEX1" - } ] - } - }, { - "identification" : "1c7ab6bd-b738-440f-83e1-236d3ef3edc4", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-268546160691085048570063", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" - } - } - }, { - "identification" : "19fc209f-47fe-4797-b8fa-da38a42aa63d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-905057221072844983963648", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" - } - } - }, { - "identification" : "49d15a30-ff99-46e7-b2e0-e9c28bcf197e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-695596542982882364328512", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" - } - } - }, { - "identification" : "3b1a0d00-26fc-4da9-a3b1-052ab2159ef0", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.3301", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3ffa97ff-b3a7-4946-804b-0a9a2268a285" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481" - }, { - "quantity" : { - "quantityNumber" : "0.2001", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c" - } ] - } - }, { - "identification" : "8dd92fe9-31b2-43f0-8023-ebf57c9e26ae", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000006V6", - "key" : "manufacturerId" - }, { - "value" : "44948I8-01", - "key" : "manufacturerPartId" - }, { - "value" : "NO-274463926929255123292820", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", - "partTypeInformation" : { - "manufacturerPartId" : "44948I8-01", - "customerPartId" : "44948I8-01", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" - } - } - }, { - "identification" : "35104864-6959-4861-b1f1-ac1088ce7165", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Glue", - "recycledContent" : 0, - "materialClass" : "6.2", - "quantity" : { - "materialValue" : 0.3301, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GL338" - } ] - } - }, { - "identification" : "ed190c90-1956-42af-a50f-8b795f3f7090", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:11d3b806-9c7c-475f-8a96-c83869acf90b" - } ] - } - }, { - "identification" : "9af95a6e-1935-4cba-8054-fae625101a3b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000008TS", - "key" : "manufacturerId" - }, { - "value" : "92938C2-11", - "key" : "manufacturerPartId" - }, { - "value" : "NO-256954620119327430333278", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", - "partTypeInformation" : { - "manufacturerPartId" : "92938C2-11", - "customerPartId" : "92938C2-11", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } - }, { - "identification" : "e0d74539-c135-4347-ae64-973e643160df", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "4082b058-0cf9-4911-8a2c-af4306e4b72c", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000003X9", - "key" : "manufacturerId" - }, { - "value" : "47238G5-40", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172667875175078717722499", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c", - "partTypeInformation" : { - "manufacturerPartId" : "47238G5-40", - "customerPartId" : "47238G5-40", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" - } - } - }, { - "identification" : "d9c69e34-696a-4d35-8725-402fdb4027be", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "6123c1b8-917a-4baa-a65b-861611ed715c", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Glue", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "AL7" - }, { - "materialName" : "Other", - "recycledContent" : 0, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 30 - }, - "aggregateState" : "", - "materialAbbreviation" : "" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "0d8ca442-2ed4-43c1-a506-068788e7f9a7", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-007124957331041074434767", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" - } - } - }, { - "identification" : "85e85ed5-85cc-468f-add1-b6c2ad812d07", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-758048689753305180775539", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" - } - } - }, { - "identification" : "f03434f0-bc13-4bcd-aa2e-989ad08fb4bd", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65" - } ] - } - }, { - "identification" : "bc5095d2-acba-4ffb-a2bb-a4edacb8cdc2", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "38049661-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-756331897915455557019668", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", - "partTypeInformation" : { - "manufacturerPartId" : "38049661-08", - "customerPartId" : "38049661-08", - "classification" : "component", - "nameAtManufacturer" : "Battery", - "nameAtCustomer" : "Battery" - } - } - }, { - "identification" : "3a82c4ce-2c47-4538-b05f-7b9eef93149a", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 5.4, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 11.75, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 1.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "ba64f023-5ad8-4018-a5b1-113e704e477a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2" - } ] - } - }, { - "identification" : "86198287-5edc-42fc-a119-7b71eac5c0b9", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-872243158497686070857106", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "f1f6c35c-9cf7-407e-b4d0-722ec7874ffe", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "7eccbce7-af1f-43fa-b08d-682277719d3a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "c37a081d-7811-46ee-85de-d20fb334354b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-130265542343423615754581", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "8e4576de-38a8-4f8c-8ae5-c8fde4dd81bb", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-19T14:13:51.616Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-26T01:37:27.616Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "4fae9d6d-b0aa-47a5-9f75-98e6f5cec3a9", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "67cc5c9f-2819-41f7-a495-8633d20d2b43", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "5618b86b-eb00-4d00-809d-7dea7aaab9b0", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-455380397089292580888742", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "075ce630-b7e9-4faa-bd5a-fb20ea86ef92", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-19T08:59:04.641Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-10T11:57:41.641Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "fc7e6d0b-9074-47c0-b03a-008488bd24a7", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "c5d4461f-d3c3-41c2-a260-d5be62b314ba", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "cdb78982-ba38-4ed8-921d-da0ea77e8e1e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-903598109190211364426775", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "adbabc5e-b43d-4e2b-b20d-0996085f3e8d", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-05-03T18:28:56.747Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-26T23:56:12.747Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "099a7a60-6727-4cdd-8430-a2779efc25b2", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "f49430cb-f674-4bd0-ab37-6cddd5ade352", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "7ab41720-7a60-44f3-9990-79d5a7c7ad3f", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-021962944047805746367761", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "2d91782b-2352-4569-8152-2d234e2b199a", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-06T06:10:05.668Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-01T05:47:42.668Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "a0cd3c5a-a4ea-4de6-b036-5bf30c7118b3", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "14e80a49-faf3-4715-a5dc-d7e5fb6b83f9", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "2470334c-bf49-49fc-88fd-8c01728d208f", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-125050795986786183359325", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a4b474a0-9fe5-489c-b700-e3836f148b8c", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-01-26T09:23:33.849Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-25T12:18:16.849Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "f7981da7-219a-4625-b1d1-2c8dbc0adc85", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "2e76ad1e-c87f-4199-ba4d-0d13d2f68715", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "15e9562e-68d9-4adc-aa24-578ff9dc506b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-531300805801470000761489", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "957e1b57-93f2-4da6-8de4-a4654dbdd93f", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-09-12T00:09:26.773Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-12T13:23:00.773Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "064b5271-2f2c-4ce9-b9c8-517ba2449884", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "72f5909c-e4f3-4d43-8487-e0b5f78bcfdb", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "25a4fe66-0c19-4046-8318-98b14f330384", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-244528905128108295244780", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "6ae5e7d1-b405-43cf-9fde-44ccb57cab0f", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-19T11:14:57.719Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T08:53:03.719Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "9aa99032-b9d4-4ab7-932a-99c881dbd761", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "0797e251-aaca-428f-8579-560967d94905", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "cbf29658-1df6-4dbe-b7f9-bb273f72cb5d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-880031765073836928982686", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "d1b12a40-7e90-4be2-8386-fcd3d3253041", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-21T03:21:18.798Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T22:42:44.798Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "6ac4a860-7bb5-4691-83cc-fbb8eb88f7db", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "e70cc7a0-de58-4b20-9ea5-942d93a55255", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" - } - }, { - "identification" : "df88dd65-8ed2-4f31-9f4c-2287a5e92ddf", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "c2715b8c-42f9-4f68-8cbb-8cf9af3b8c9d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "a0b4be6e-2a3b-4181-a714-2c1c5c4769c7", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-443230900795463311145281", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a6d50f7f-8575-48cc-b484-bb8fe5c8424c", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-08T16:50:27.823Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-15T20:55:33.823Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "1a5c5d03-a81c-464e-9da8-774fdf2f7152", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "44cf54cb-f8b7-46a6-97b8-e1bdc46139e7", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "503d0415-19c8-400b-b491-15300000227d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-019516772432761683505797", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "2c54547e-9e37-4b39-bbed-4339df15aed3", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-06-14T18:33:57.694Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-25T06:54:11.694Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "2fd3a731-9028-434c-90d2-bf7db903aa06", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "c6f612b9-06fb-4c23-b0f0-8c63e1d14354", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10" - } ] - } - }, { - "identification" : "0940488e-6e23-490a-aa25-d003b6603f3a", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-936469540267122028133084", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "4b6023d0-c095-4ccb-8682-67bdc9834a7d", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "732235bb-b139-446a-af56-61de541fec92", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "d2f99354-fa3f-47ec-983d-e35720287867", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779279901827212210096658", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "bd2f1182-0450-455b-a493-d2b6ed057678", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-04-13T07:34:12.982Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-20T06:06:44.982Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "83390408-c2bb-4666-bb8e-6ca8ff836178", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "d19d8736-4383-48f2-a0a6-6f4d80d90014", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - } - }, { - "identification" : "55179ff0-7790-4464-bdde-0d98d848fef7", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "c82cc313-fce0-43a5-bc32-d01a5a49ba8a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "e67fcb88-9c45-4bf0-b0ef-23229e3f69f1", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-288561296923641725525560", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "9efc7970-cb28-4d3f-bff2-a88c601bd31a", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-17T08:10:59.931Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-30T17:58:28.931Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "3c3a0e0d-a3bf-459e-99e7-558ac5cef25b", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "6cdbc913-fb6b-41b5-8a77-e2573196e49e", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "fdf0f094-6f01-44f5-99e0-6a0c481cc7f7", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-947357485572138547474815", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "02baa5d3-cd73-45c5-87f0-c112d8277f76", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-11-08T20:23:14.118Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-06T19:08:40.118Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "d7b57d7c-cf69-4560-a0e9-34bb4abe226a", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "de218c68-a444-417c-8199-f3aa2581d81c", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "b3aa8d69-160a-4311-8382-b76d012ca5d1", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-645226141826539042644127", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "4e576d79-4ccc-49d9-b118-8c7d1437f655", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-12T16:32:53.060Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-24T02:19:22.060Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "22507ad1-6083-410c-8fdb-245ad51cd6ff", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "05da5912-b6ba-4921-8654-b0699f3db180", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "e8be856e-c7fa-4a52-80d7-c8f81f5282ea", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-278073431490304036390838", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "1f156cbe-9cff-48a4-9f2b-19018a734311", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-08T19:12:37.142Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-22T22:14:12.142Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "78207003-28f7-45a9-ab57-ad8671387241", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "203c588a-0701-49c7-a72e-4cdd71c87e35", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "55985b0a-dbde-45ca-888e-e67c111800f4", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-027743164217746938122367", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "523e7a90-fe51-4383-ba7d-7c1016f9f1d5", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-02T11:50:43.089Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-19T03:45:40.089Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "c6d89de6-3ae5-4b7c-a85d-6587278bbf83", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "ecabbab9-742a-4279-9510-e6bff1c16f2c", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "3a4d968e-8e52-4304-8a35-7b97fade9ebb", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-052654298270007473939311", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "44d291a8-0f17-42cb-9776-79e6ffea4530", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-27T13:19:24.033Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-18T06:48:39.034Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "99c6594f-3195-4330-9187-eddd87f48a3d", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "92adaa2d-36f8-47b0-b36d-605234fa75f5", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "d43ae817-517e-4f94-8270-8a920fcf2310", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-051790433845902624624319", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "04b0f270-ecc8-4019-9aa4-fb7922b8ad4a", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-02-16T23:29:34.007Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-11T00:16:02.007Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "6622c82d-f615-4a4e-940d-8f9e966ea07d", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "700fb67c-d200-47c3-be51-3ea4c16d505a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "4afa2905-da5d-43d3-a6ae-1424f406e401", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-399581361452668197953794", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "cf9dda3b-0acc-47fe-a12c-63912ede4023", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-21T03:13:09.906Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-27T14:10:39.906Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "769332f0-cef6-4c27-9d8f-b5157d205bf0", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "319b22f8-ce27-4d3d-851d-ddeadddd611d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "c46a4c89-e65c-4f04-a3c4-4ad85004b89a", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-998794657627460138476569", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a358ca17-d357-4be4-950a-d45b4b8d9853", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-24T08:01:04.955Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-14T21:10:49.956Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "84c45640-7a6d-4cd4-bc1b-c0e2bc07945f", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "60155b38-0865-4afa-8be4-d837c333e0ac", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c" - } ] - } - }, { - "identification" : "0b851868-4642-4cc0-a311-001504cdfb13", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-987496315295296675091552", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "05ab0ef7-68b7-493e-8447-ce24c03b87af", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "a68eddc6-dd5e-4fb8-8b3c-60aba7a14a52", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "41571fe1-20f7-4114-a7be-eeae182cf540", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-755600977772068144422925", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "c2d25728-84f4-4c8c-aacf-36ea26e2b7d9", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-29T08:50:22.570Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-07T16:50:25.570Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "bedbd2ed-f084-4024-b1ac-f0500f4d4776", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "961fb9c9-b7d4-44ed-9cee-544b630355eb", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - } - }, { - "identification" : "c9ae1d1d-c5f3-4116-aae3-e7cf8ff7968b", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "afd9c4c5-e1ea-473a-845d-fa2bdd685b78", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "c55fc6ed-36be-4670-a7c1-95d43f56f7e8", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-976246583518983329476627", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "4586223a-e21f-4c81-b86b-c453648a8623", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-03T18:21:09.520Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-11T17:36:19.521Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "25410410-04c9-4a12-89ad-990ad63dcb78", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "157d5337-723d-4867-bc57-b01c24cf0bdf", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "13e35862-04ea-47c3-9d59-2b6da2e3b394", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-215517135022923154231124", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "bde7aed8-1ba3-45bd-88e3-1fde595c7d86", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-22T15:55:50.495Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-23T00:31:30.495Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "f0bf3f0b-1658-47cd-b34e-80c12f9281f3", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "67d0089c-ec2d-4441-9b1d-953b2adce8af", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "314ef791-3f37-4643-b130-5b85bb967010", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-065697353061472490561920", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a8372c01-b759-4b02-a594-a91cb33aad3a", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-28T05:01:53.698Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-29T22:14:08.698Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "4d12db0a-3fe1-4ed5-b3f9-7259e25b3dc6", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "d9230b67-351f-4d9c-929e-4808bf123bea", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "98d5af3f-24df-4809-9364-a42189260489", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-456190353233510012423226", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "1c110055-9eb5-4547-9d66-2ff79e92c5ed", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-13T08:35:53.645Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-29T11:23:21.645Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "7d98c9f9-cb01-432f-8a1d-23f8836fd0fe", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "61a7858c-11a0-408f-83f9-c1c4acd2dfb6", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "bc98a2d9-71df-4ce8-942f-03f339dc97d8", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-412426811167052022316607", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "b6d94669-8779-4197-9893-a74de587dfb1", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-05-23T20:24:20.545Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T03:04:12.545Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "3d3e861b-d6b9-4c2f-847a-451465fc93c5", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "7850c4c7-f3dc-436c-9c8d-1f382483680d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "68f49896-0c94-4f70-8494-1d0e46f314f9", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-274426967409614139072830", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "850ee42e-76b3-4dac-8f53-dddccfa04a3b", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-20T23:54:11.671Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-18T04:05:28.671Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "e4205332-99c5-4d11-aec9-61c1d9aa8554", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "1147a231-5a54-406e-b5e0-d9671dc6ba4b", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "632be621-3507-4771-9d57-6f18178bef6f", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-322063546063876574365836", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "df7448f8-cd3d-42b4-86a1-be490ab0c363", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-05-25T07:55:41.620Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-31T19:18:17.620Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "6df6cb57-e4c3-48a8-98db-536c92119357", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "98bb5f94-4528-4fe1-b24f-f7c58c4dd9fe", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "3d45d107-ce83-483f-8b48-106aca7a7a47", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-840838259300630884167444", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "547e55a1-5b88-400a-8b38-5a026032bb43", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-01-20T03:50:55.595Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T03:02:46.595Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "88d28f1e-df0f-4017-ae84-a888ad03217a", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "8e462230-6392-45f0-84f8-fe5a2424cab2", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "04a3acc7-46a0-4b50-b184-e2bf0ab45cc9", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-007811247724310901088732", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "1367bc6d-5d91-4388-b917-1b4c0c90fce8", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-24T14:57:28.722Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T18:38:54.722Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "3898c518-2efb-478d-85ed-ea5627816ea1", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "39dc9178-364d-4570-9e18-6ec4c6ae6fe5", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02" - } ] - } - }, { - "identification" : "091c8667-4c16-4d56-ab6e-ced581d28209", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-397154349131484375656139", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "565f46bd-e834-4416-9922-e9011b8efeeb", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "fa03ee22-2b7e-4181-8fb1-53ab73c1b709", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "a22ea960-5654-4ae8-8508-69c45be88d39", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-034992236059910962808755", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "918cb513-91b8-477b-bd35-d06c7458c211", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-18T11:43:39.433Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-07T17:12:39.433Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "12812ac2-6128-4f8e-bc44-26fcb4e3dda1", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "5330a6fa-9121-454b-ab36-14a8cd7f83fa", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - } - }, { - "identification" : "675e7913-ebf1-429e-832f-fb4f35a1d325", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "583d73c5-a26e-4d47-9644-5f640bb8a0c7", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "cacecffb-8336-463b-93a3-fd69d8f06d94", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-741160439714312150263205", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "77e4c332-33b3-4410-9376-16222ed36254", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-27T23:18:21.325Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-22T11:41:51.325Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "bcb70bbe-35fe-4e7c-8ef7-48c96b176cfc", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "9c6f1b80-484d-4b66-af6c-99c375680738", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "de7d9708-82ea-45fa-9d52-c4a909ebec0c", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891133096626491789094716", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "72d1186b-9c06-4751-b6c4-4786bbc5d535", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-04-18T11:50:52.458Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-18T15:42:15.458Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "d6772f8d-3132-4f21-8e69-1353eb20516f", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "656a5971-a7b9-438a-af42-d9d19457f5b2", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "799d8366-7540-4a53-843c-def411e185ad", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-063820828568097941920228", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "7d0d35b0-ddeb-4ddd-89c1-31ec8cf942c9", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-14T22:16:59.351Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-16T17:32:20.352Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "5f43f65b-7446-4271-9ad8-2fd72ef67866", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "08fb6460-cf1f-4949-b4ca-5bdad9afc636", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "6fedfa24-8a27-4074-8c8a-e177cc25f57e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-894692428212679504198409", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "d60de02c-eef8-44d3-8e73-e40ae87ac33c", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-28T14:30:20.484Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-11T05:18:06.484Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "7225302a-0c4e-4c92-a477-0ff79e70dbfa", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "2eb53c69-50bf-418c-ad6c-95dc2cc75140", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "23926b67-e0c1-4e9c-be04-d2685ccb1bc2", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-098464765106257705924304", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "0584e8d9-60f2-4ba6-9298-15e8d64e2334", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-15T02:39:49.377Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-10T11:13:42.377Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "cf24606c-d631-42b6-a373-93051659e117", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "7bc10a7a-1e0d-4285-aff2-2b529de85fa6", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "302dd638-2087-4e14-9bef-e435f114ce4a", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-740243203044432370004786", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a39a5844-e89f-44b4-b9f4-400515cd9fa6", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-26T11:41:51.510Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-25T07:46:47.510Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "e152eb60-74f1-4e4c-b782-52fe01c4aa2b", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "9e56b75f-9258-46a6-a440-b2b0c87c2fd2", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "4af71f0b-82cf-4dd1-baec-2db758b98146", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-693164889856495573522160", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a6224a1d-4972-4ac1-84e6-63762bd8de94", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-11T14:38:50.537Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-17T16:43:44.538Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "aebdf2fe-762a-4873-ad74-5a8e00f6c630", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "27a4c5cf-9843-46e0-af19-903a3a784fd1", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "83babf24-b926-4815-81e5-48d80e40fecb", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-680857851056982426316844", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "4ab85abb-6b58-428d-9f47-ebbb0af78918", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-08T16:52:26.563Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T15:15:56.563Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "05ea3fe8-0611-43a0-902a-0f55961ae26d", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "be8fdb81-8133-4e43-a2d8-e0b39623f0a8", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "12f71f52-dc6f-4530-9d40-d7cd1769eecf", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-669743859207774206291178", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "c24a87f2-80d4-495a-b235-1c517df45780", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-31T07:27:15.404Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-08T22:53:02.404Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "d8299618-861d-420e-a417-661992651a21", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "e50fabeb-c419-4924-860c-258c2f637cc2", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5" - } ] - } - }, { - "identification" : "50502218-837a-4335-8bfb-5f7aaa6fa25b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-411900890782891517523033", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "3196bc4c-0cbb-4361-aaec-569f56d69e58", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "e4246141-16d8-4d64-99a5-88ff0aac54c8", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "167b6a59-67fd-4ecf-8737-3d735869cdf7", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-814834464581355412582927", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "e7d1665c-f2c9-429e-9eca-f21f0ff7b0db", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-12-24T13:32:13.060Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-19T18:14:47.060Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "6366196e-7a35-4434-be60-9bf632d0c377", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "e1616590-2796-4c28-8665-6b68b6d26ca0", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - } - }, { - "identification" : "e0489bbb-dfaa-4271-b599-9cf993a005a6", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "2e0e103b-f4a0-499e-88ba-7cae6436732a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "a167eb0d-3a9e-4423-8782-2bc4c3e2596c", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-440692985740032047782501", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "dded6238-5da7-4e11-9258-1de2691764cf", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-16T15:08:59.191Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-29T18:22:48.191Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "5f7b76e0-9e4f-4692-a398-456ac3d9a340", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "1b336125-a3ca-4d0b-86f9-491e5e7c6889", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "1133d595-1d3f-4c5b-ba52-006449be91dd", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-073339747964710286010910", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "e0b05af1-a2fa-4c82-ab35-053989f0b3ac", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-12-29T12:52:17.242Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-22T04:08:36.242Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "55dcd55c-214c-44f2-8e4f-18c0b5dd394a", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "d918804e-fa26-40cd-b5ee-024b7910ff44", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "7dedb37e-072c-43c0-ade5-77515ce3b204", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-791063849687758768537593", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "5232ba47-b7e0-4153-971c-580c864e9e5f", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-19T06:41:25.166Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-03T21:09:36.167Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "0f936c1a-b40e-44dc-a303-708c9ef0559f", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "1280f5fb-eb5d-41ed-9810-6a8249c0bf36", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "44a88a9d-290a-4351-8b3d-b754f5e4725a", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-829560258621094129036030", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "8e51a6b0-26e4-498a-a3ef-7aa5ecad1473", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-19T04:35:58.140Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-04T18:05:14.140Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "5dbb8669-b80a-4518-b81e-98a98cd5b990", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "ef3d7bd5-b746-440e-b2e4-59bc954b322d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "07bb809d-e6a6-41d5-939c-ba5d13d0d359", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-183039123743381013318764", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "bfb50eab-8148-40b4-8303-2f4b804db823", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2013-07-27T09:49:28.217Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-12T13:37:14.217Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "696c7011-601f-4b70-914a-1b7f1bb01a5c", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "f9f751d8-1dd7-4146-b1c1-b376194450c4", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "e70db97e-9329-4c54-ba09-7364b7603f2e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-717243127610800273354391", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "3e7284ef-ab6d-47c4-89b2-88d0567d47a1", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-16T12:20:30.116Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-19T22:52:16.116Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "b6c360ef-eb57-4e08-bd68-91a9176cffde", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "6f5d16d9-93d3-42f4-a4bd-05f16847fa03", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "21728c55-c0a0-4e6f-8784-2266f82a4560", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-900295643543929427504984", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "fa9238b2-1b2c-41f8-9b37-635e0f43e314", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-15T14:57:37.268Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-30T12:44:19.268Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "d6920a24-1787-4050-93ff-7df03453c3b3", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "299ef944-924e-4fa7-b471-b348fe22137d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "a78ab366-f367-499a-bdda-0da616dbc8c2", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-238449964390011046450191", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "c04a96e8-cb7d-416a-8ff7-cc17bdbba8d2", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-03-11T20:23:05.034Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-18T20:05:44.034Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "70004e65-4874-49d1-b8f8-64f5f9225a43", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "9d697087-32a3-48ab-bd67-c9c2479dd263", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "774ec40a-665b-4fbe-aaa9-d750a5bcc553", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-150681052048967250407746", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "a79e95c4-47bb-4234-9eff-64e104475dc4", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-23T18:46:58.089Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-29T17:01:54.089Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "67e9eb15-26fc-43c7-bdfa-55aaf9a9b365", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "830cc114-6c37-40ab-a9de-efe1926c456e", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 0.11, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575" - } ] - } - }, { - "identification" : "c536213e-830e-4eb2-adf1-16a2f5f41244", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-556635662271379893406331", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", - "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "classification" : "component", - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - } - } - }, { - "identification" : "729f2335-dd4c-437b-890b-10a84ec17426", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "materialValue" : 2.5, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 0.23, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - } ] - } - }, { - "identification" : "1c3b002d-dd12-433f-ba3a-ffb414eec13e", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" - } - }, { - "identification" : "9c1b60a0-06a0-4b37-acb0-ea139bf7bc33", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } - }, { - "identification" : "bb475f34-8081-4d96-8021-13575655756a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "2f1cc5ad-d4f5-4c6f-9b6f-e02bfa32688d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-834156910309543808064188", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "ef3c43a0-1ecb-4c71-9809-f1e367433621", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-22T21:44:37.244Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-08T23:24:06.244Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "0f0fa12d-29cb-4214-9236-bf00aa2e5f04", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "636a54be-52c4-4936-8608-c8d9fb5c498b", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "bb0051b1-0149-4dff-805f-a97a60962aa8", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-878066690893572036763453", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "74fe0ebc-c3bd-4a36-9f5a-ecd5cce6f31b", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-04T14:44:00.385Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-01T17:09:33.385Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "0baa27af-435e-4dbc-a748-6bcceda5ec4a", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "866a3cf4-d08b-4474-be42-ad02caaf3bbe", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "fd92a5f5-0a8b-4a95-82c1-a4e46fbd0253", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-590048647872889800392362", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "7a243252-d7f1-438d-a739-f5ba851bffc2", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-11T22:43:48.417Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-29T06:40:58.417Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "63a13110-e550-4049-b394-a2607a643e6c", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "6d1629ca-b1c9-4bdd-afd2-eeae6014e5be", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "f9d0faa9-89c8-4f75-b729-53eb87fcd131", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-886010748623932134175360", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "2e6a7b62-9604-46cf-b103-9057599f1183", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-27T23:34:19.443Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-09T04:52:22.443Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "bea23fad-bf33-416f-b80e-8b8b94a5e3bb", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "b68355b6-9753-4d9d-983d-4f93d5222e39", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "a9af35f3-b591-419f-aa35-ed2206615aa4", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-642865039525099177152531", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "977129ce-6fd2-4da3-bb28-f78b7622bcae", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-30T12:36:28.194Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-21T15:54:34.195Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "d247ab71-48ae-47f6-8aec-0c12aaf0b6c8", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "97de2657-c717-44f0-b5aa-738549349930", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" - } ] - } - }, { - "identification" : "2e762cae-2ec6-4d25-aa58-cf2e8524ec04", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-978709787514717395081780", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "02c8c279-5c75-4f24-ad65-680403eacfdb", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-15T05:43:18.220Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-30T00:37:23.220Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "f484991a-ceaa-499a-b751-a2a84d99c71e", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "d0118dad-7f30-49f2-8076-d75b344b7a3b", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "8400eefd-4c14-4cbf-8e0f-7ebe6233cc79", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-462779239183392491104447", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "f4ecf91e-fb00-44e3-87c2-4c5a27848494", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-19T20:57:05.355Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-09T14:37:20.355Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "2a9ecaf7-2dca-4afa-a787-f0e66b8a5a3e", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "c8e5203f-acf8-431c-bd06-27384177459d", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "a0ace5ba-4a73-430d-a2ef-7a25ddf33215", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-038393596539554221901377", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "c5583ef1-ff40-412d-be73-986f715a95c9", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-26T18:30:46.294Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-15T11:08:05.294Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "b3130437-edc7-485a-87ca-b016f694b1cc", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "f83bdf9b-e664-465d-afbf-5bad4caac81c", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "d760f316-19ea-41ff-9a38-ba580898ae2b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-513959705031332580123730", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "23a761f7-a448-4350-9c27-54b41e8a1664", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-02-03T17:24:24.323Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-10-23T05:46:48.324Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "37487c35-5794-418c-a825-b1bbfec6a93d", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "46663ecd-0311-4aef-9321-6af4b3f210cf", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" - } ] - } - }, { - "identification" : "68ff4c7e-f6e7-43dd-bf2c-981e5995eb44", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000004WK", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-008235418150348082492051", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "classification" : "component", - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - } - } - }, { - "identification" : "ba1b2298-68db-4317-a9d5-af163a321fdc", - "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", - "payload" : { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : "90.0", - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-10-19T20:36:45.270Z", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : "105" - }, { - "currentStateOfHealthTimestamp" : "2022-11-07T11:18:52.270Z", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : "95" - } ], - "performanceIndicator" : { - "electricCapacityMin" : "0.8", - "electricCapacityMax" : "0.88" - }, - "type" : "HVB" - } - }, { - "identification" : "8f287b49-995a-48a8-a280-a3bf9d947cc5", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 0, - "materialClass" : "8.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "a922c8ba-e981-4234-b432-b262c4ef588b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL000000000BRP", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-355995527193049082535419", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67", - "partTypeInformation" : { - "manufacturerPartId" : "43847201-25", - "customerPartId" : "43847201-25", - "classification" : "component", - "nameAtManufacturer" : "DXM Part I", - "nameAtCustomer" : "DXM Part I" - } - } - }, { - "identification" : "c1c03ce7-6c00-471d-afa1-c4c6cf981861", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-606237138892732984854644", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" - } - } - }, { - "identification" : "269a2d4d-9ddb-4d25-bcc3-e2f7a02122da", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.2014", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4d2b3c50-d184-49b7-abee-c15e2416d360" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f" - }, { - "quantity" : { - "quantityNumber" : "0.2341", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb" - } ] - } - }, { - "identification" : "8da97a54-e6df-4e9b-8c76-66ac8b1def56", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000005VV", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-766990615220996108717636", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", - "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", - "nameAtManufacturer" : "Transmission", - "nameAtCustomer" : "Transmission" - } - } - }, { - "identification" : "aa0afddc-4f84-43ba-b8e6-bdc68e08f1aa", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 0, - "materialClass" : "1.1.2", - "quantity" : { - "materialValue" : 72.843, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 0, - "materialClass" : "9.2", - "quantity" : { - "materialValue" : 6.9, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 0, - "materialClass" : "3.1", - "quantity" : { - "materialValue" : 1.2, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } - }, { - "identification" : "ab8e80dc-96cd-4887-b7eb-7a478fece7dd", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b461b27e-e90e-404d-8d1d-2ba4668fe826" - } ] - } - }, { - "identification" : "20f6c64f-a602-45e5-b76c-8be2ba97425b", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000008TS", - "key" : "manufacturerId" - }, { - "value" : "23356R4-69", - "key" : "manufacturerPartId" - }, { - "value" : "NO-757549958601378393512051", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", - "partTypeInformation" : { - "manufacturerPartId" : "23356R4-69", - "customerPartId" : "23356R4-69", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" - } - } - }, { - "identification" : "f6c876a2-edc8-4c47-82ce-9c624928bbc4", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 0, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 60 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 0, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 40 - }, - "aggregateState" : "", - "materialAbbreviation" : "" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "88edb6ae-0fac-481d-bc3c-929ca5ffb31a", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb", - "childParts" : [ ] - } - }, { - "identification" : "57b483c6-3bba-41ab-8e54-3775a8aa12d1", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "materialValue" : 0, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] - } - }, { - "identification" : "0a091fac-74bc-4b57-9aad-259f70f87939", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 0, - "materialClass" : "5.1", - "quantity" : { - "unit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:percent" - }, - "value" : 30 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ], - "recycledContent" : 0 - } - }, { - "identification" : "5589eb36-e511-48f0-be46-ad20e993689f", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-891364318901274681144420", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" - } - } - }, { - "identification" : "2b14c499-08f8-4900-842f-ea41ca8a084e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-794948881365933357696563", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" - } - } - }, { - "identification" : "5a91b766-487f-4930-a906-d6c3beb7f343", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-336501670323944754847120", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" - } - } - }, { - "identification" : "07de9d14-b2bd-49a9-9b87-f0f381e57aa9", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-404561020520407545527244", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" - } - } - }, { - "identification" : "9551adae-6657-4a5d-9370-a62c8ba95584", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-593917629278722495853130", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" - } - } - }, { - "identification" : "3abcf47b-40cb-4020-a045-b5bc925007d1", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05" - } ] - } - }, { - "identification" : "42208246-b0bc-4fb7-86ae-aecabec83b72", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL000000000CR0", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-864945181992987138826380", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" - } - } - }, { - "identification" : "84c86c97-545d-46c2-a3ce-be741bdc0d25", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000007UH", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-532171273576205329716343", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } - }, { - "identification" : "083d91cc-a42a-4fe2-9f57-9bfe7025543d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-699286501909148179523124", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" - } - } - }, { - "identification" : "4cbcda8f-14cc-4bcd-8e53-455285c8b5b4", - "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload" : { - "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45" - } ] - } - }, { - "identification" : "d8d19a96-4b2b-4b00-a29b-3c9b974aa578", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL000000000CR0", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-161305774591896935305126", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" - } - } - }, { - "identification" : "2b1d12e5-064f-486f-b2a2-1cb657288b8d", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000007UH", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-888672826169208924871100", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" - } - } - }, { - "identification" : "4ad64f55-6d45-4a30-be09-dfb9214cdb65", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-285738124671946790755013", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" - } - } - }, { - "identification" : "b33bca2a-ebbd-4634-bbd0-b15c01982890", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-221529357828450992163277", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" - } - } - }, { - "identification" : "b5e37539-271b-4964-aa13-6544e2c4f04f", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-771546429775857488005298", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" - } - } - }, { - "identification" : "bdd8c019-7625-43b0-b2b7-0cb057dfd62a", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-319328934538360919371441", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" - } - } - }, { - "identification" : "b9345b18-1a9e-49e7-926e-af42236ce5a3", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-327219257590621671110467", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" - } - } - }, { - "identification" : "ae3b7cb1-01e0-4e49-9bad-2e3123b86df9", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-248947073528659334520214", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" - } - } - }, { - "identification" : "046c57d9-77c0-4d44-841e-c5988bdedd57", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-646750375569445335448929", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" - } - } - }, { - "identification" : "ca85a151-824f-4e51-a071-6a72fcff6abb", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-514120980650681577421549", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" - } - } - }, { - "identification" : "0bf1d303-8fd2-4226-998c-7e85f2e75860", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-206166928849251423762317", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" - } - } - }, { - "identification" : "10a79937-40ee-4ed8-9f95-e0f528dbee90", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-172221858256197441698007", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" - } - } - }, { - "identification" : "951e49bc-b139-4417-a824-23e561ae3d13", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-339870276832989260997041", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" - } - } - }, { - "identification" : "c09e787b-7c28-4fec-955d-65e42ac5479c", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-432831762226813140246654", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" - } - } - }, { - "identification" : "332d1137-f7e6-45b1-9f0a-9cfbc772efb5", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-063690465365817633826184", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" - } - } - }, { - "identification" : "39b063f6-1b82-4341-a873-f433e44bdecb", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-317190466887910047967527", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" - } - } - }, { - "identification" : "09e6f1b3-bcda-4407-8985-55f82210a87e", - "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL0000000002XY", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-298601484959777552144950", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" - } - } - } ] + "submodels": [ + { + "identification": "urn:uuid:607045d8-3e7a-4790-b6c5-39fa5e90d48a", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", + "payload": { + "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" + } + ] + } + }, + { + "identification": "urn:uuid:d3807de1-2f25-4a41-aebe-65e15b32a3e5", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", + "payload": { + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "partTypeInformation": { + "manufacturerPartId": "39478586-36", + "classification": "product", + "nameAtManufacturer": "Tier B ECU2" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] + } + }, + { + "identification": "urn:uuid:c99f9a4d-8d9e-4791-b3d0-cd657de6f831", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZmM1MmY1ODItOTQyYy00NzQwLTljOWUtNjZlM2Q0ZTc5Y2Qx:dXJuOnV1aWQ6Nzg0ZWZkMDYtZWY1Zi00ZDUyLWJmZTgtODVkNDQ4OWRlNzBm:ZmUyNjM5OGItMTVkNy00NTJiLTkxNWEtOTNmY2NkNWJhYjMw", + "payload": { + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation": { + "manufacturerPartId": "123564887-01", + "classification": "product", + "nameAtManufacturer": "Tire Model A" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] + } + }, + { + "identification": "urn:uuid:8d3e53b6-f562-466b-8b90-4cee6e8cd88e", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", + "payload": { + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation": { + "manufacturerPartId": "6775244-06", + "classification": "product", + "nameAtManufacturer": "Sub Tier B Glue" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] + } + }, + { + "identification": "urn:uuid:99383b75-05ab-428b-b7f1-95dd1c14bd7f", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "NGYzNjdkMGMtZmMyOC00Y2U5LWJkYTQtYjAwZGFjMGFkYWZh:dXJuOnV1aWQ6Njc0NzU2NjItNjFmMy00NTY4LWJlMGItYWVlNDJjNGFlZjM5:MTFjZjg2OGEtZjU0ZS00YWJkLThjOGYtOWU0OGRmZTM1NmIz", + "payload": { + "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" + } + ] + } + }, + { + "identification": "urn:uuid:e1232890-4e1c-49df-b826-673faaf38978", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MzI0MGNkNTAtMjA0OS00ODFlLWFkZGUtOTJmOTJkZjViOWVm:dXJuOnV1aWQ6Y2JjNDI2YjUtZmE2ZS00M2Q4LTlmMWItYWMyZjUzZjFhMTcw:N2Y4NGI4ZDQtZWYyOS00NTI1LWI5NDEtYzQzOTlkYmVlY2E0", + "payload": { + "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" + } + ] + } + } + ] } \ No newline at end of file From c891082d93af145eb21b660e447c2660d78ad91f Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Thu, 11 Apr 2024 17:31:36 +0200 Subject: [PATCH 91/96] fix(impl): [#405] fix ClassCastException --- .../irs/edc/client/EdcSubmodelClientImpl.java | 19 +++++++----- .../irs/edc/client/EdcSubmodelClientTest.java | 29 +++++++++++++++++++ 2 files changed, 40 insertions(+), 8 deletions(-) diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientImpl.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientImpl.java index 601fa53403..68779159a2 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientImpl.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientImpl.java @@ -32,7 +32,6 @@ import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionException; import java.util.concurrent.ExecutionException; -import java.util.stream.Stream; import io.github.resilience4j.retry.Retry; import io.github.resilience4j.retry.RetryRegistry; @@ -168,8 +167,8 @@ public CompletableFuture getSubmodelPayload(final String con return execute(connectorEndpoint, waitingForSubmodelRetrieval); } - private EndpointDataReference getEndpointDataReference(final String connectorEndpoint, final String assetId, final String bpn) - throws EdcClientException { + private EndpointDataReference getEndpointDataReference(final String connectorEndpoint, final String assetId, + final String bpn) throws EdcClientException { final EndpointDataReference result; @@ -205,11 +204,13 @@ private EndpointDataReference getEndpointDataReferenceAndAddToStorage(final Stri @Override public CompletableFuture sendNotification(final String connectorEndpoint, - final String assetId, final EdcNotification notification, final String bpn) throws EdcClientException { + final String assetId, final EdcNotification notification, final String bpn) + throws EdcClientException { return execute(connectorEndpoint, () -> { final StopWatch stopWatch = new StopWatch(); stopWatch.start("Send EDC notification task, endpoint " + connectorEndpoint); - final EndpointDataReference endpointDataReference = getEndpointDataReference(connectorEndpoint, assetId, bpn); + final EndpointDataReference endpointDataReference = getEndpointDataReference(connectorEndpoint, assetId, + bpn); return sendNotificationAsync(assetId, notification, stopWatch, endpointDataReference); }); @@ -248,7 +249,8 @@ public List> getEndpointReferencesForAs final NegotiationResponse negotiationResponse; try { - negotiationResponse = negotiateContract(endpointDataReferenceStatus, contractOffer, providerWithSuffix, bpn); + negotiationResponse = negotiateContract(endpointDataReferenceStatus, contractOffer, providerWithSuffix, + bpn); final String storageId = getStorageId(endpointDataReferenceStatus, negotiationResponse); @@ -262,14 +264,15 @@ public List> getEndpointReferencesForAs log.warn(("Negotiate contract failed for " + "endpointDataReferenceStatus = '%s', catalogItem = '%s', providerWithSuffix = '%s' ").formatted( endpointDataReferenceStatus, contractOffer, providerWithSuffix)); - return (CompletableFuture) Stream.empty(); + return CompletableFuture.failedFuture(e); } }).toList(); } private NegotiationResponse negotiateContract(final EndpointDataReferenceStatus endpointDataReferenceStatus, - final CatalogItem catalogItem, final String providerWithSuffix, final String bpn) throws EdcClientException { + final CatalogItem catalogItem, final String providerWithSuffix, final String bpn) + throws EdcClientException { final NegotiationResponse response; try { response = contractNegotiationService.negotiate(providerWithSuffix, catalogItem, 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 60e6295d4a..278351ccac 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 @@ -24,6 +24,7 @@ package org.eclipse.tractusx.irs.edc.client; import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.fail; import static org.eclipse.tractusx.irs.edc.client.cache.endpointdatareference.EndpointDataReferenceStatus.TokenStatus; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; @@ -47,6 +48,7 @@ import java.util.List; import java.util.Objects; import java.util.Optional; +import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutionException; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; @@ -407,6 +409,33 @@ void shouldRetrieveEndpointReferenceForAsset() throws Exception { assertThat(actual).isEqualTo(expected); } + /** + * This test asserts that when an exception occurs during negotiation it will not result in a {@link ClassCastException}. + * + * @throws Exception exception + */ + @Test + void shouldNotThrowClassCastException() throws Exception { + // arrange + when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); + when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( + List.of(CatalogItem.builder().itemId("asset-id").build())); + when(contractNegotiationService.negotiate(any(), any(), + eq(new EndpointDataReferenceStatus(null, TokenStatus.REQUIRED_NEW)), any())).thenThrow( + new ContractNegotiationException(new RuntimeException("contract negotiation failed"))); + + // act & assert + try { + final List> result = testee.getEndpointReferencesForAsset( + ENDPOINT_ADDRESS, "filter-key", "filter-value", + new EndpointDataReferenceStatus(null, TokenStatus.REQUIRED_NEW), "bpn"); + assertThat(result).hasSize(1); + assertThat(result.get(0)).isCompletedExceptionally(); + } catch (ClassCastException e) { + fail("Should not thrown a ClassCastException", e); + } + } + @Test void shouldRetrieveEndpointReferenceForAsset2() throws Exception { // arrange From f6ac1708c2736ad07fa924f3830df9873da54279 Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 12 Apr 2024 10:32:41 +0200 Subject: [PATCH 92/96] fix(impl): [#405] improve readability --- .../aaswrapper/job/delegate/BpdmDelegate.java | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/BpdmDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/BpdmDelegate.java index 23529ede40..2817ad9157 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/BpdmDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/BpdmDelegate.java @@ -23,6 +23,7 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.aaswrapper.job.delegate; +import java.util.function.Consumer; import java.util.regex.Pattern; import lombok.extern.slf4j.Slf4j; @@ -55,7 +56,8 @@ public BpdmDelegate(final AbstractDelegate nextStep, final BpdmFacade bpdmFacade @Override public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContainerBuilder, - final JobParameter jobData, final AASTransferProcess aasTransferProcess, final PartChainIdentificationKey itemId) { + final JobParameter jobData, final AASTransferProcess aasTransferProcess, + final PartChainIdentificationKey itemId) { if (jobData.isLookupBPNs()) { log.debug("BPN Lookup enabled, collecting BPN information"); @@ -72,7 +74,8 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai } catch (final RestClientException e) { log.info("Business Partner endpoint could not be retrieved for Item: {}. Creating Tombstone.", itemId); requestMetric.incrementFailed(); - itemContainerBuilder.tombstone(Tombstone.from(itemId.getGlobalAssetId(), null, e, retryCount, ProcessStep.BPDM_REQUEST)); + itemContainerBuilder.tombstone( + Tombstone.from(itemId.getGlobalAssetId(), null, e, retryCount, ProcessStep.BPDM_REQUEST)); } } else { log.debug("BPN lookup disabled, no BPN information will be collected."); @@ -83,7 +86,8 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai private void lookupBPN(final ItemContainer.ItemContainerBuilder itemContainerBuilder, final String itemId, final Bpn bpn, final RequestMetric metric) { - bpdmFacade.findManufacturerName(bpn.getManufacturerId()).ifPresentOrElse(name -> { + + final Consumer action = name -> { if (BPN_RGX.matcher(bpn.getManufacturerId() + bpn.getManufacturerName()).find()) { bpn.updateManufacturerName(name); metric.incrementCompleted(); @@ -96,14 +100,18 @@ private void lookupBPN(final ItemContainer.ItemContainerBuilder itemContainerBui Tombstone.from(itemId, null, new BpdmDelegateProcessingException(message), 0, ProcessStep.BPDM_VALIDATION)); } - }, () -> { + }; + + final Runnable fallbackOnEmptyManufacturedId = () -> { final String message = String.format("BPN not exist for given ManufacturerId: %s and for CatenaXId: %s.", bpn.getManufacturerId(), itemId); log.warn(message); metric.incrementFailed(); itemContainerBuilder.tombstone(Tombstone.from(itemId, null, new BpdmDelegateProcessingException(message), 0, ProcessStep.BPDM_REQUEST)); - }); + }; + + bpdmFacade.findManufacturerName(bpn.getManufacturerId()).ifPresentOrElse(action, fallbackOnEmptyManufacturedId); } } From 16d6319b60cef7499da2b86e56a65f0df42c93be Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 12 Apr 2024 15:04:58 +0200 Subject: [PATCH 93/96] fix(impl): [#405] catch RestClientExceptions --- .../org/eclipse/tractusx/irs/bpdm/BpdmFacade.java | 12 ++++++++++-- .../eclipse/tractusx/irs/bpdm/BpdmWiremockTest.java | 7 ++----- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmFacade.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmFacade.java index 107e85895a..34da82c843 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmFacade.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmFacade.java @@ -31,6 +31,7 @@ import org.apache.commons.lang3.StringUtils; import org.springframework.cache.annotation.Cacheable; import org.springframework.stereotype.Service; +import org.springframework.web.client.RestClientException; /** * Public API Facade for bpdm domain @@ -47,9 +48,16 @@ public class BpdmFacade { @Cacheable(value = BPDM_CACHE_NAME, key = "#manufacturerId") public Optional findManufacturerName(final String manufacturerId) { - final BusinessPartnerResponse businessPartner = bpdmClient.getBusinessPartner(manufacturerId, BPN_TYPE); - final List names = businessPartner.getNames(); + final List names; + try { + final BusinessPartnerResponse businessPartner = bpdmClient.getBusinessPartner(manufacturerId, BPN_TYPE); + names = businessPartner.getNames(); + } catch (final RestClientException e) { + log.warn(e.getMessage(), e); + return Optional.empty(); + } + if (names.isEmpty()) { log.warn("Names not found for {} BPN", manufacturerId); return Optional.empty(); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmWiremockTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmWiremockTest.java index b0c63f0713..a1e272fca4 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmWiremockTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmWiremockTest.java @@ -20,7 +20,6 @@ package org.eclipse.tractusx.irs.bpdm; import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.eclipse.tractusx.irs.bpdm.BpdmWireMockSupport.BPDM_URL_TEMPLATE; import static org.eclipse.tractusx.irs.bpdm.BpdmWireMockSupport.bpdmWillNotFindCompanyName; import static org.eclipse.tractusx.irs.bpdm.BpdmWireMockSupport.bpdmWillReturnCompanyName; @@ -33,7 +32,6 @@ import com.github.tomakehurst.wiremock.junit5.WireMockTest; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import org.springframework.web.client.HttpClientErrorException; import org.springframework.web.client.RestTemplate; @WireMockTest @@ -69,10 +67,9 @@ void shouldReturnEmptyOnNotFound() { bpdmWillNotFindCompanyName(bpn); // Act & Assert - // TODO (#405) fix implementation to not throw HttpClientErrorException$NotFound - assertThatExceptionOfType(HttpClientErrorException.class).isThrownBy( - () -> bpdmFacade.findManufacturerName(bpn)); + final Optional manufacturerName = bpdmFacade.findManufacturerName(bpn); verifyBpdmWasCalledWithBPN(bpn, 1); + assertThat(manufacturerName).isEmpty(); } } From a2cb4aa09f67286bcf1e2b2b439febd7cc418d8d Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 12 Apr 2024 15:14:32 +0200 Subject: [PATCH 94/96] fix(impl): [#405] update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d2cd88aca..c92fd5199c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,18 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [UNRELEASED] ### Added + - SAMM models can now be added locally #488 - Introduced new Cucumber Tests to cover Industry Core 2.0.0 compatibility #488 ### Changed +### Fixed + +- ClassCastException in exception handling of EdcSubmodelClientImp#getEndpointReferencesForAsset corrected (returns the exception as failed future now). #405 +- RestClientExceptions are handled correctly in BpdmFacade now. #405 + + ## [4.9.0] - 2024-04-03 ### Added - Extended EdcPolicyDefinitionService to check if a policy in the edc exists From 9ed510209b893334c23128e1bd29163ae11985fd Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 15 Apr 2024 09:57:05 +0200 Subject: [PATCH 95/96] feat(impl):[#517] updated insomnia collection --- .../IRS_Request_Collection.json | 7260 ++++++++--------- 1 file changed, 3597 insertions(+), 3663 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 941366d437..61cc39b27f 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -1,3665 +1,3599 @@ { - "_type": "export", - "__export_format": 4, - "__export_date": "2024-04-10T08:18:24.322Z", - "__export_source": "insomnia.desktop.app:v8.6.1", - "resources": [ - { - "_id": "req_ddeaf33f8aba4e7caa89d257bb8adbdf", - "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "modified": 1705006817408, - "created": 1705005887617, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get all policies", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1705005887617, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1687243055015, - "created": 1687243055015, - "name": "Policy Store", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1687243055015, - "_type": "request_group" - }, - { - "_id": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", - "modified": 1691572726194, - "created": 1680682418636, - "name": "IRS DEMO Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418636, - "_type": "request_group" - }, - { - "_id": "wrk_53254e8de24e4d6e8325f803463490e8", - "parentId": null, - "modified": 1701227455138, - "created": 1701227455138, - "name": "IRS", - "description": "", - "scope": "collection", - "_type": "workspace" - }, - { - "_id": "req_209e12e564484bacbcdee19f862c4ffe", - "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "modified": 1712736856772, - "created": 1711449523700, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get policies for BPN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "id": "pair_8482da576c10480b9f7edf7a4aa752c6", - "name": "businessPartnerNumbers", - "value": "BPNL1234567890AB", - "description": "", - "disabled": false - }, - { - "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", - "name": "businessPartnerNumbers", - "value": "BPNL1234567890XX", - "description": "", - "disabled": false - } - ], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1703116992024, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b9950550995c4f888e5ded6c6c275035", - "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "modified": 1702990529632, - "created": 1687243204155, - "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", - "name": "Delete policy", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1685602897140.75, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2c425451945e4aec953f2a319fed6353", - "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "modified": 1712736811711, - "created": 1693576003390, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Update policies", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policy-id12\"\n\t]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684874704117.875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0145ca9fad0a4322b1fe4f9999fb568c", - "parentId": "fld_f8e0a855a2e24de09b6fb5a9f6df545d", - "modified": 1712736780844, - "created": 1687243182397, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Register policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL1234567890AB\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1683962737633.5, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_07bf6fac04c7463484434f109bd87a23", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003275081, - "created": 1680682418619, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", - "name": "Get Shell by aasIdentifier", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418619, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_c6e3c0e5fc504a15975467f151974fa5", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1691504187689, - "created": 1680682418630, - "name": "Digital Twin Registry", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418630, - "_type": "request_group" - }, - { - "_id": "req_d671d2da0dd348509317de89de928e8a", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706002920212, - "created": 1690529035794, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", - "name": "Get Shells", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418614, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bf3345a1de634cf282ce419e0de0b1fc", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003278149, - "created": 1680682418609, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By BPN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", - "disabled": true, - "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", - "disabled": true, - "id": "pair_cc48c08e3b834497a2d88bd4201c3867" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", - "disabled": false, - "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", - "disabled": true, - "id": "pair_706e6930cc874343941b744a054ef388" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", - "disabled": true, - "id": "pair_45c6bcf3266a475891ebbbba6cde0798" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", - "disabled": true, - "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", - "disabled": true, - "id": "pair_d72f55c7bf714c7c9aae58456c778443" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", - "disabled": true, - "id": "pair_406c9da4dc014fb297f70bb3da7128c1" - } - ], - "headers": [ - { - "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418609, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9d96d6cf4d06400c9cf9f9c0cabcaeed", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003280850, - "created": 1680682418595, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By VAN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", - "disabled": false, - "id": "pair_50d86e928e9f448d97da8ada0390e12f" - } - ], - "headers": [ - { - "id": "pair_ed11c2a6df9248e292914df944e8ba93", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418595, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_64ab7bb5a4224fb7a467c9614a5bd34e", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003354109, - "created": 1680682418581, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", - "disabled": false, - "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" - } - ], - "headers": [ - { - "id": "pair_71ae5e562e9c414a82e84220f3c00343", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418581, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b297ba4421144beba4c295260f78b66d", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003284715, - "created": 1680682418570, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By VAN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_2f4c445074514f92a4dee92554053d0a" - }, - { - "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418570, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_24bd3fe717c14549a17a41ec75bdd6c3", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003286642, - "created": 1691408320970, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" - }, - { - "id": "pair_5dc1d703196747318faff9a8dd96be0c", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418560.5, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_fb7c0fc211f44397a850a2bc562b96c0", - "parentId": "fld_c6e3c0e5fc504a15975467f151974fa5", - "modified": 1706003289343, - "created": 1689167429413, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Shell by aasIdentifier", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [ - { - "id": "pair_6266690c04fd466fa1617082f5b8ec76", - "name": "pageSize", - "value": "50", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418470, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6a734310d9794711895a7412e4a489bb", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991054859, - "created": 1680682418551, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.0.0 [Register Job]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418551, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_57f291f4f2184a68a104dc0706e73962", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418562, - "created": 1680682418562, - "name": "IRS Test Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418562, - "_type": "request_group" - }, - { - "_id": "req_b598213913a841fc93bebd37ccc2fe1c", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991058493, - "created": 1680682418539, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.0 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418539, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1faa38ab41ec44058e569885a1b83a53", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991063641, - "created": 1680682418524, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.1 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418524, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_c463e6aa998c4305b8e24013bfe3df79", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991067797, - "created": 1680682418514, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418514, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9d7b7729c3c747e685d0ae781d7a9e9a", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991071709, - "created": 1680682418504, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418504, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e0fcb6d8e38146718d518ada1afad4b2", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991076696, - "created": 1695042901876, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418496, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_97693e7c910944ddb12bd6715ece0634", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076144872, - "created": 1680682418488, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.0 [Register Job with aspect SerialPart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418488, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a6532b996ee24749a7deedfc497871b2", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076455844, - "created": 1680682418479, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418479, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_93c58e5d9eac441b946e3c91eafc5e55", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1712222178406, - "created": 1680682418469, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418469, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bd90c4ae330143b681d3e40e28b08678", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076741632, - "created": 1680682418442, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.3 [Register Job with aspect PartAsPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418442, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6bfba7dfa13340ef82af70bfe3ceb888", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076751758, - "created": 1680682418432, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.4 [Register Job with upward direction]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418432, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_38df9b91319444298e0cb7e4c12db6c2", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1712222124387, - "created": 1695192937155, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.5 [Register Job with aspect JustInSequencePart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418428, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6e8167a35b75481b8e06fd6ce11ecb0e", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1712222106070, - "created": 1695192971825, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418426, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3a497f19d7984482a4ec2a0b5fa046e5", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076214310, - "created": 1680682418424, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418424, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bdb5f2b5b99647a99cab15ab4c1cec82", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991130711, - "created": 1680682418414, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418414, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_43b5831ce81b4221a223667cbe141160", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076937249, - "created": 1680682418401, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.5.0 [Register Job with all aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418401, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_155a7e4b96624743b599ed75c83aedf8", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076677384, - "created": 1680682418392, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.6.0 [Register Job with BPN lookup]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418392, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d915c524b71c43018f58e7151b40687c", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076237949, - "created": 1683184048412, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.7.0 [Register Job with invalid policy]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418386.5, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_8cf09f0176df4010ad033de0a19f9a07", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076397373, - "created": 1693493383337, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.0 [Register Job with data integrity success]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418382.375, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5a31fda0c5d14ad7ab4d8de1a7355836", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076245754, - "created": 1693493584873, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.1 [Register Job with data integrity wrong hash]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.6875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_87e0551ccbbb474a99e8b91869af39d5", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076391502, - "created": 1693493594373, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.2 [Register Job with data integrity wrong signature]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.3438, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3a13072096c84c98a5d4ba66df3088ce", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1710076385497, - "created": 1693493604521, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.1719, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d6aea3d1645a49438def9a9f8fbfacfd", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991173689, - "created": 1680682418381, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.0 [Search for completed Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "COMPLETED", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_53d5f4fe6b464127a302b1a7dc6c76b9", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991177973, - "created": 1680682418372, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.1 [Search for Jobs in error state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418372, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_58a136c047034eb7a688048cbdf108fb", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991182139, - "created": 1680682418358, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.2 [Search for Jobs in initial state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "INITIAL", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418358, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f570a88240804513aa54f57660cd13a9", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991186114, - "created": 1680682418348, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.3 [Search for all Jobs in JobStore]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418348, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_98c5e996682446a1a23faae569a5a13e", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991190326, - "created": 1680682418339, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.1.0 [Search for running Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "RUNNING", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418339, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_90e45ff9e06c4e179677db5e8f41aae6", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991196283, - "created": 1680682418325, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.0.0 [Search for given jobId with uncomplete]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418325, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_072ae3b46a564fd78f37ab686cbc7270", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991200399, - "created": 1680682418316, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.1.0 [Search for given jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418316, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e15a23d43cae40c783dd6d2ebb90cea0", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991205447, - "created": 1680682418307, - "url": "{{IRS_HOST}}/irs/jobs/test", - "name": "3.1.1 [Search for invalid jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418307, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_c97b48a91163423aaaeeb77abd78a4a4", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991214202, - "created": 1680682418297, - "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", - "name": "3.1.2 [Search for unknown jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418297, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_909b3f2338a04498b737ec6fc16189bd", - "parentId": "fld_57f291f4f2184a68a104dc0706e73962", - "modified": 1702991218362, - "created": 1680682418280, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "6.0.0 [Cancel Job for given jobId]", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418280, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b587b3cc5fe64d4086856c228a1a0d52", - "parentId": "fld_18778b59b43a433caf173c19db608803", - "modified": 1705942015684, - "created": 1682672699249, - "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", - "name": "Find BPN endpoints for manufacturer numbers", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630902023, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_18778b59b43a433caf173c19db608803", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1683630931664, - "created": 1683630887514, - "name": "Discovery", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418417.5, - "_type": "request_group" - }, - { - "_id": "req_813c337498d44a0698850adb60b259cf", - "parentId": "fld_18778b59b43a433caf173c19db608803", - "modified": 1705942027574, - "created": 1683031718699, - "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", - "name": "Find BPN Discovery Endpoints of type BPN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901923, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5d03557be4d54ec4871d2f5bffdb0993", - "parentId": "fld_18778b59b43a433caf173c19db608803", - "modified": 1705942036978, - "created": 1683560906453, - "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", - "name": "Find EDC endpoints for BPNs", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "[\n\t\"BPNL00000001CRHK\"\n]" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901873, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_cb31a166ccd64ab5bf20099ebc205d93", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1710076352238, - "created": 1680682418265, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Register Job", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418265, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_02b6868263c048c8ac135574159fbb4d", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418273, - "created": 1680682418273, - "name": "IRS Basic API Calls", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418273, - "_type": "request_group" - }, - { - "_id": "req_dcb90264a2d54f9ab00bfb3f6282f287", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1705942154792, - "created": 1680682418238, - "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", - "name": "Get registered Job", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418261, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_4584dacb86d84733a7a5db8a5c59c92d", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1702991288793, - "created": 1680682418257, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for all Jobs in JobStore", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418257, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9d8c59f193db4066ab035ec6817343cc", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1702991284435, - "created": 1680682418247, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for Jobs for given state", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": true, - "id": "pair_c694b66f41e649db837f801b5699859e" - }, - { - "name": "states", - "value": "CANCELED,COMPLETED", - "disabled": false, - "id": "pair_ab346623e5394504b7232cc40ae75bed" - }, - { - "id": "pair_ddbccd5219944e8cac3d99249ba881e5", - "name": "states", - "value": "RUNNING", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418247, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_42436010753b49d7b2bd3b6fba68aeb0", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1703236659047, - "created": 1690384427379, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Get Job for jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418238, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_51bcc80f9f8441f891a7aecd43099ffd", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1702991276045, - "created": 1680682418229, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Cancel Job for jobId", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418229, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_58577c766064460daa0b53230ded33df", - "parentId": "fld_02b6868263c048c8ac135574159fbb4d", - "modified": 1702991272198, - "created": 1682498338739, - "url": "{{IRS_HOST}}/irs/aspectmodels", - "name": "Get all available Aspect Models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418179, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0443d99781bd42589da0f47adc43b647", - "parentId": "fld_1c510cd576c047e183e89c7247376950", - "modified": 1705942066941, - "created": 1680682418213, - "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", - "name": "Get all models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "pageSize", - "value": "100", - "disabled": false, - "id": "pair_96567b64925d4487bae4c74bfa9e021e" - }, - { - "id": "pair_2dae68db8a564296a5835e66d951331f", - "name": "status", - "value": "RELEASED", - "description": "" - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418213, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_1c510cd576c047e183e89c7247376950", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418222, - "created": 1680682418222, - "name": "Semantics Hub", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418222, - "_type": "request_group" - }, - { - "_id": "req_982fbe03f688402eaa3a59864d57c0b9", - "parentId": "fld_1c510cd576c047e183e89c7247376950", - "modified": 1705942077015, - "created": 1680682418204, - "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", - "name": "Get SerialPartTypization", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418204, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9e90c9c88cc64b129fd7bbd8dfada97f", - "parentId": "fld_1c510cd576c047e183e89c7247376950", - "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", - "name": "Get SerialPartTypization Json Schema", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418192, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9b5eef1cbd554d529be04f572b8e0cd2", - "parentId": "fld_ff7ba332fb1a4cdfb1c06e621623fa18", - "modified": 1705942100313, - "created": 1680682418174, - "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", - "name": "Get business partner by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "idType", - "value": "BPN", - "disabled": false - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.BPDM_CLIENT_ID }}", - "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418174, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_ff7ba332fb1a4cdfb1c06e621623fa18", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418184, - "created": 1680682418184, - "name": "Business partner data management", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418184, - "_type": "request_group" - }, - { - "_id": "req_7f85de9d20cf4ec29a00e45da4ef7476", - "parentId": "fld_fb01fe78b13140f0a6ced1d4e35a8a74", - "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", - "name": "Get Esr Statistics", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418158, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_fb01fe78b13140f0a6ced1d4e35a8a74", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418167, - "created": 1680682418167, - "name": "ESR Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418167, - "_type": "request_group" - }, - { - "_id": "req_edabe6732540481fa4388624c858d3c1", - "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", - "modified": 1702991361578, - "created": 1680682418143, - "url": "{{IRS_HOST}}/ess/bpn/investigations", - "name": "Register Job Investigation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418143, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_cdd3393410894a898d9e6a94ba0f562e", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418151, - "created": 1680682418151, - "name": "ESS Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418151, - "_type": "request_group" - }, - { - "_id": "req_7f672ad9256948198de016c9c9d68147", - "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", - "modified": 1705942138125, - "created": 1680682418134, - "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", - "name": "Get registered investigation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418138.5, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_269a3f979e7e45718f632d302b621cd8", - "parentId": "fld_cdd3393410894a898d9e6a94ba0f562e", - "modified": 1702991370481, - "created": 1680682418134, - "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Search for investigation by jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418134, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f449a89c593f4c2f8718c066a48424e6", - "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "modified": 1710076303275, - "created": 1680682418118, - "url": "{{IRS_HOST}}/irs/orders", - "name": "Register Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418118, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1680682418128, - "created": 1680682418128, - "name": "Batch Processing", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418128, - "_type": "request_group" - }, - { - "_id": "req_8c2b07404f0443deac9794df5f6b8351", - "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "modified": 1702991390349, - "created": 1696342619602, - "url": "{{IRS_HOST}}/irs/ess/orders", - "name": "Register ESS Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418113.5, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_8a9bb9cec5094d85beec4418eb22caeb", - "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "modified": 1705006936944, - "created": 1705006139836, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Cancel order job for given orderId", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_88db8badf4ea4a0d9968c769167407c8" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418111.25, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5716aae510fb40a3a2f83223cd358619", - "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "modified": 1702991398473, - "created": 1680682418109, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Search for given orderId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418109, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2a685edc7b7e4d5f9f6375ee30379a9f", - "parentId": "fld_53c3f5206dad45fabe3a27e01245d9a2", - "modified": 1702991409664, - "created": 1680682418099, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", - "name": "Search for given orderId and batchId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418099, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5e843735001340b8bf5baa8caf297438", - "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", - "modified": 1690472186478, - "created": 1678358655308, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722939.1875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", - "parentId": "fld_480bc634dc164f10969a0e0610b09446", - "modified": 1690362660167, - "created": 1690362660167, - "name": "Catalog", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1690362660167, - "_type": "request_group" - }, - { - "_id": "fld_480bc634dc164f10969a0e0610b09446", - "parentId": "fld_9e206e8fd3ae41ae92bea5e9436d626b", - "modified": 1690363778601, - "created": 1675675609576, - "name": "EDC-Requests", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418078, - "_type": "request_group" - }, - { - "_id": "req_a10b377a98bb4c23b58eef57897e69c8", - "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", - "modified": 1691500654267, - "created": 1685521485278, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with registry filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722889.1875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_06d2a55e47414327b9cff7bf9c366d10", - "parentId": "fld_3c583f5a50a9410d8f6f96ca51eea3c0", - "modified": 1705940987109, - "created": 1691654388376, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with asset filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722789.1875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_94c1a50d71fb44c9b4e6b5364bfd9291", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1691578280640, - "created": 1675675609557, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", - "name": "Start contract negotiation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511095, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "parentId": "fld_480bc634dc164f10969a0e0610b09446", - "modified": 1684146626847, - "created": 1684146519491, - "name": "Negotiation", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1679911060327.75, - "_type": "request_group" - }, - { - "_id": "req_cca5eeb9c9e04258a5052704f68fb53b", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1690362123962, - "created": 1675675609549, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", - "name": "Get contract negotiation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511045, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6ebf18b651e54a80b06077dd8f477a4c", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1690362117725, - "created": 1685444139708, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", - "name": "Cancel contract negotation", - "description": "", - "method": "POST", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511020, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_97c60db796524e13a60d7396045f48b1", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1690361721223, - "created": 1681911985730, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", - "name": "Get contract negotiations", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510995, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ceafbae9dd434a9e87ad3a1b94c6895a", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1691578311420, - "created": 1675675609541, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", - "name": "Start transferprocess", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510945, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_725be1435d9a4a81acff7851fa7c292e", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1691503370103, - "created": 1679993996270, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", - "name": "Get transferprocess by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510895, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9bf082344f1f4c9da9e9ae7d970fae6d", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1690361795179, - "created": 1675675609525, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", - "name": "Get transferprocesses", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510845, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f22279e6764548bbb72961d3f036d069", - "parentId": "fld_33e5f085b9464adfaa9dfc54f917c0a3", - "modified": 1690361763512, - "created": 1681910653593, - "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", - "name": "Get contract agreements", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510795, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_29134bc0c5924329812e12a1bd1851e7", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362947546, - "created": 1681907482278, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", - "name": "Create Asset", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033461.75, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "parentId": "fld_480bc634dc164f10969a0e0610b09446", - "modified": 1705940929752, - "created": 1684146457388, - "name": "Provider", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1678852197613.5625, - "_type": "request_group" - }, - { - "_id": "req_8ced6c1761be4c60b36a9f6b3e5394b8", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362407763, - "created": 1685444139630, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Asset by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033452.375, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6effcc7552d74be2a2ed322443176d57", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362438115, - "created": 1685444139625, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", - "name": "Get all Assets", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033447.6875, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_fcee54d2cded47d4859ed8f3e1bed573", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362400081, - "created": 1685444139636, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Asset", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033433.625, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_916d09dca1c94d64b79261d7cb19a76b", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362581978, - "created": 1685444139641, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", - "name": "Create Policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033403.9375, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_476634e2ecb6474ea50d6244963e4504", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362549290, - "created": 1685444139647, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Policy by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033364.0938, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_55df3c43719445d4862e8854da509e3d", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362591799, - "created": 1685444139653, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", - "name": "Get all Policies", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033344.1719, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d7d1ac6276fd4b74a8b6b965051e2a44", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362559324, - "created": 1685444139659, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Policy by ID", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033299.25, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0d05f6bdbd2d4050ae6c7b09b837fd80", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690363080444, - "created": 1685444139665, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", - "name": "Create Contract Definitinion", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033261.75, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_19c9156fc063408bba57c8f6ed5fd217", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690362691392, - "created": 1685444139672, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Contract Definition by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033199.25, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_4f56442d3d614af3ba7c668ab9da99c4", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690363126919, - "created": 1685444139678, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", - "name": "Get all Contract Definitinions", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033174.25, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_14caa7ed15cc427dbf1b01d2aa96860a", - "parentId": "fld_8aa6ae77b4b34814b4d56fb58d99452c", - "modified": 1690363136216, - "created": 1685444139684, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Contract Definition", - "description": "", - "method": "DELETE", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033149.25, - "isPrivate": false, - "pathParameters": [], - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "env_cd08041ce8f97848d5dcccbfd57dd79d914d5272", - "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", - "modified": 1701227605781, - "created": 1701227455152, - "name": "Base Environment", - "data": {}, - "dataPropertyOrder": {}, - "color": null, - "isPrivate": false, - "metaSortKey": 1701227455152, - "_type": "environment" - }, - { - "_id": "jar_cd08041ce8f97848d5dcccbfd57dd79d914d5272", - "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", - "modified": 1701424442877, - "created": 1701227455156, - "name": "Default Jar", - "cookies": [ - { - "key": "KC_RESTART", - "expires": "1970-01-01T00:00:10.000Z", - "maxAge": 0, - "domain": "centralidp.int.demo.catena-x.net", - "path": "/auth/realms/CX-Central/", - "httpOnly": true, - "extensions": [ - "Version=1" - ], - "hostOnly": true, - "creation": "2023-11-30T14:21:58.431Z", - "lastAccessed": "2023-12-01T09:54:02.877Z", - "id": "4550124559802897" - } - ], - "_type": "cookie_jar" - }, - { - "_id": "spc_a610e869f2384602ac1a9523d58b1ae0", - "parentId": "wrk_53254e8de24e4d6e8325f803463490e8", - "modified": 1701227455141, - "created": 1701227455141, - "fileName": "IRS", - "contents": "", - "contentType": "yaml", - "_type": "api_spec" - } - ] + "_type": "export", + "__export_format": 4, + "__export_date": "2024-04-15T07:56:11.237Z", + "__export_source": "insomnia.desktop.app:v2023.5.8", + "resources": [ + { + "_id": "req_1f30ad95b4814ec39132f47bc270cedf", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1705006817408, + "created": 1705005887617, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get all policies", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1705005887617, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_af826750e6ad41dbad291333a64f2dca", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1687243055015, + "created": 1687243055015, + "name": "Policy Store", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1687243055015, + "_type": "request_group" + }, + { + "_id": "fld_5de60849f6444f6f9d543051dfc1b83a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1691572726194, + "created": 1680682418636, + "name": "IRS DEMO Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418636, + "_type": "request_group" + }, + { + "_id": "wrk_565df8abe30f4da29d8bffcde97927d7", + "parentId": null, + "modified": 1680682438221, + "created": 1680682419747, + "name": "IRS", + "description": "", + "scope": "collection", + "_type": "workspace" + }, + { + "_id": "req_82357f1f7e9e44d985f045e8c2342237", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736856772, + "created": 1711449523700, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get policies for BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "id": "pair_8482da576c10480b9f7edf7a4aa752c6", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890AB", + "description": "", + "disabled": false + }, + { + "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890XX", + "description": "", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1703116992024, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f5cf53dba53e4fd7b91452e99d924db8", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1702990529632, + "created": 1687243204155, + "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", + "name": "Delete policy", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1685602897140.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_320eee8efd384f25a36f9911fc105ce0", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736811711, + "created": 1693576003390, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Update policies", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policy-id12\"\n\t]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684874704117.875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_43e0684544204340a9227c96c234b986", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736780844, + "created": 1687243182397, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Register policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL1234567890AB\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1683962737633.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3663f0d6d0a84f778728d6212e2e4452", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003275081, + "created": 1680682418619, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", + "name": "Get Shell by aasIdentifier", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418619, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_bc26470cb00d4d64bc19be6755f25f00", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1691504187689, + "created": 1680682418630, + "name": "Digital Twin Registry", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418630, + "_type": "request_group" + }, + { + "_id": "req_025d858a7e7744289e1e947105333bd7", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706002920212, + "created": 1690529035794, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", + "name": "Get Shells", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418614, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_711662a8951d47c49556a24b558dd62b", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003278149, + "created": 1680682418609, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", + "disabled": true, + "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", + "disabled": true, + "id": "pair_cc48c08e3b834497a2d88bd4201c3867" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", + "disabled": false, + "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", + "disabled": true, + "id": "pair_706e6930cc874343941b744a054ef388" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", + "disabled": true, + "id": "pair_45c6bcf3266a475891ebbbba6cde0798" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", + "disabled": true, + "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", + "disabled": true, + "id": "pair_d72f55c7bf714c7c9aae58456c778443" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", + "disabled": true, + "id": "pair_406c9da4dc014fb297f70bb3da7128c1" + } + ], + "headers": [ + { + "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418609, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_49a66feb305448aeba7d30d7dd608166", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003280850, + "created": 1680682418595, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By VAN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", + "disabled": false, + "id": "pair_50d86e928e9f448d97da8ada0390e12f" + } + ], + "headers": [ + { + "id": "pair_ed11c2a6df9248e292914df944e8ba93", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418595, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3ce036e7a0484363abcdf29571974aed", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003354109, + "created": 1680682418581, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", + "disabled": false, + "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" + } + ], + "headers": [ + { + "id": "pair_71ae5e562e9c414a82e84220f3c00343", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418581, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_61d92a9abade4718b3347eb48ed6e995", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003284715, + "created": 1680682418570, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By VAN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_2f4c445074514f92a4dee92554053d0a" + }, + { + "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418570, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1c406ce78cc4495681e3f9bbafa43493", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003286642, + "created": 1691408320970, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" + }, + { + "id": "pair_5dc1d703196747318faff9a8dd96be0c", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418560.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b9e1dd78b327487487cc53559ba3707d", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003289343, + "created": 1689167429413, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Shell by aasIdentifier", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [ + { + "id": "pair_6266690c04fd466fa1617082f5b8ec76", + "name": "pageSize", + "value": "50", + "description": "", + "disabled": true + } + ], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418470, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0b71020848164f0b81c3ecdb8fdd58e2", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991054859, + "created": 1680682418551, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.0.0 [Register Job]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418551, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_50286f7d5d454684b8aba9765d6e3855", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418562, + "created": 1680682418562, + "name": "IRS Test Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418562, + "_type": "request_group" + }, + { + "_id": "req_aa365dbdfe984b0ebd551ba074ea10c3", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991058493, + "created": 1680682418539, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.0 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418539, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_65f8af5a42494c3ca02568b7dfae1d62", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991063641, + "created": 1680682418524, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.1 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418524, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b1c6a3ac35004cfeaefac5a2bb0dda5a", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991067797, + "created": 1680682418514, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418514, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ab6d6199c2d24e90a848eee6ea78109f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991071709, + "created": 1680682418504, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418504, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f3399d84f94740d68afb0e9a7e8fa0f1", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991076696, + "created": 1695042901876, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418496, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ff728ed6ad5d4e52acc8a6d735f76929", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076144872, + "created": 1680682418488, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.0 [Register Job with aspect SerialPart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418488, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_57dbf280a39f488f802a2f4e7474c161", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076455844, + "created": 1680682418479, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418479, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0286ed482b0a467880d9cdcb73942498", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222178406, + "created": 1680682418469, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418469, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3240716443ef458187b8601a1664e39c", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076741632, + "created": 1680682418442, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.3 [Register Job with aspect PartAsPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418442, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_23625e9b7a6a414ca52074bd2d2bb44f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076751758, + "created": 1680682418432, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.4 [Register Job with upward direction]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418432, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ac5b82e7eb07402381b4250fc209cd65", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222124387, + "created": 1695192937155, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.5 [Register Job with aspect JustInSequencePart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418428, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5bd9f681a9d64799928f9a6391db4088", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222106070, + "created": 1695192971825, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418426, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a607e76dd9c844b7b9dbd74069ac6ced", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076214310, + "created": 1680682418424, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418424, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_398cafd7dc0946e1bb9d173c0fb1f019", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991130711, + "created": 1680682418414, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418414, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a5528db1444448bfb3897f6805615e41", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1713167745641, + "created": 1680682418401, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.5.0 [Register Job with all aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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:samm:io.catenax.battery.product_description:1.0.1#ProductDescription\",\n\t\t\"urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer\",\n\t\t\"urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\",\n\t\t\"urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension\",\n\t\t\"urn:samm:io.catenax.return_request:1.0.1#ReturnRequest\",\n\t\t\"urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\",\n\t\t\"urn:samm:io.catenax.part_as_planned:2.0.0#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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418401, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d47afad7fc814583b0b51b34c32f7956", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076677384, + "created": 1680682418392, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.6.0 [Register Job with BPN lookup]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418392, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_c10f4f5ba1ef4030a3238f793b6456fa", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076237949, + "created": 1683184048412, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.7.0 [Register Job with invalid policy]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418386.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6c09857d7c404d3b96ceb84241674869", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076397373, + "created": 1693493383337, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.0 [Register Job with data integrity success]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418382.375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_336ddd957bee488e8e1ee44d8feee23c", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076245754, + "created": 1693493584873, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.1 [Register Job with data integrity wrong hash]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.6875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2081e1206173466eac0b516e138b83ae", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076391502, + "created": 1693493594373, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.2 [Register Job with data integrity wrong signature]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.3438, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_7408834739394ad8914108c2c55af11f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076385497, + "created": 1693493604521, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.1719, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_934b2c3546964dbba0154c0b5d6affd6", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991173689, + "created": 1680682418381, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.0 [Search for completed Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "COMPLETED", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1ca399d41b914d38839e434ed9b324e9", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991177973, + "created": 1680682418372, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.1 [Search for Jobs in error state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418372, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a6624384545844c192396bb6a8ba4ed1", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991182139, + "created": 1680682418358, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.2 [Search for Jobs in initial state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "INITIAL", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418358, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d9939ead26f9426b8fa0335022261db7", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991186114, + "created": 1680682418348, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.3 [Search for all Jobs in JobStore]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418348, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_981c712ae0aa404c9f2a76a37a32beb4", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991190326, + "created": 1680682418339, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.1.0 [Search for running Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "RUNNING", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418339, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_682d405fe865408b9466cbe854360861", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991196283, + "created": 1680682418325, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.0.0 [Search for given jobId with uncomplete]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418325, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_89ab9dac1e164e4c8685fe13a891d83a", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991200399, + "created": 1680682418316, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.1.0 [Search for given jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418316, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a9c9ca4c15af4ff892cd4b4d0d5b4ac9", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991205447, + "created": 1680682418307, + "url": "{{IRS_HOST}}/irs/jobs/test", + "name": "3.1.1 [Search for invalid jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418307, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_00bd7b14057f4764ac46e5512b9db6ac", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991214202, + "created": 1680682418297, + "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", + "name": "3.1.2 [Search for unknown jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418297, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6fe9f28aacbc46cb952332925a6b66b6", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991218362, + "created": 1680682418280, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "6.0.0 [Cancel Job for given jobId]", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418280, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b77302d3e4c54ea9bccd588aa40d6e06", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942015684, + "created": 1682672699249, + "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", + "name": "Find BPN endpoints for manufacturer numbers", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630902023, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_272800c031334bd984de7da6b9a84881", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1683630931664, + "created": 1683630887514, + "name": "Discovery", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418417.5, + "_type": "request_group" + }, + { + "_id": "req_4e371616910b4939834e590574434f8d", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942027574, + "created": 1683031718699, + "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", + "name": "Find BPN Discovery Endpoints of type BPN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901923, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_96b48f84945e4a139c43b347081dea1d", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942036978, + "created": 1683560906453, + "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", + "name": "Find EDC endpoints for BPNs", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "[\n\t\"BPNL00000001CRHK\"\n]" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901873, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_19b0215781524f3ba61025cdf8ff24c9", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1710076352238, + "created": 1680682418265, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Register Job", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418265, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_f46e575b1932435b9eaca816c878139d", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418273, + "created": 1680682418273, + "name": "IRS Basic API Calls", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418273, + "_type": "request_group" + }, + { + "_id": "req_eed24d5541f042f7b35258a85715376c", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1705942154792, + "created": 1680682418238, + "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", + "name": "Get registered Job", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418261, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_252a950f231d4af6978078f3333816ea", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991288793, + "created": 1680682418257, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for all Jobs in JobStore", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418257, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2dff37767bae4b3e92e3735c20a203b5", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991284435, + "created": 1680682418247, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for Jobs for given state", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": true, + "id": "pair_c694b66f41e649db837f801b5699859e" + }, + { + "name": "states", + "value": "CANCELED,COMPLETED", + "disabled": false, + "id": "pair_ab346623e5394504b7232cc40ae75bed" + }, + { + "id": "pair_ddbccd5219944e8cac3d99249ba881e5", + "name": "states", + "value": "RUNNING", + "description": "", + "disabled": true + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418247, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1d8a5d751d914257a1c52b9ee6449f06", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1703236659047, + "created": 1690384427379, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Get Job for jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418238, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1e867216fa0b4e40a4d002b5f09e48ea", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991276045, + "created": 1680682418229, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Cancel Job for jobId", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418229, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_21a6d5cb7990445db301e5811b36e09e", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991272198, + "created": 1682498338739, + "url": "{{IRS_HOST}}/irs/aspectmodels", + "name": "Get all available Aspect Models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418179, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ef073a9c3df443d28211b4a47c86efcc", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "modified": 1705942066941, + "created": 1680682418213, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", + "name": "Get all models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "pageSize", + "value": "100", + "disabled": false, + "id": "pair_96567b64925d4487bae4c74bfa9e021e" + }, + { + "id": "pair_2dae68db8a564296a5835e66d951331f", + "name": "status", + "value": "RELEASED", + "description": "" + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418213, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_0240862432fa4a45943e9292fdc4bef2", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418222, + "created": 1680682418222, + "name": "Semantics Hub", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418222, + "_type": "request_group" + }, + { + "_id": "req_4b8bf2eb52e5421c9813cf51b7af7b28", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "modified": 1705942077015, + "created": 1680682418204, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", + "name": "Get SerialPartTypization", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418204, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f6eafa824d5b43efb88a4ccdeefa1583", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "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", + "name": "Get SerialPartTypization Json Schema", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418192, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1284cf1d5074402f932b68b96d9bc927", + "parentId": "fld_ecf376d268ed403d85415925a9876340", + "modified": 1705942100313, + "created": 1680682418174, + "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", + "name": "Get business partner by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "idType", + "value": "BPN", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.BPDM_CLIENT_ID }}", + "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418174, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_ecf376d268ed403d85415925a9876340", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418184, + "created": 1680682418184, + "name": "Business partner data management", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418184, + "_type": "request_group" + }, + { + "_id": "req_958372128cd94531b9153539a95ff025", + "parentId": "fld_f08715e4a303459d9c66b22f0ea2fee7", + "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", + "name": "Get Esr Statistics", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418158, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_f08715e4a303459d9c66b22f0ea2fee7", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418167, + "created": 1680682418167, + "name": "ESR Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418167, + "_type": "request_group" + }, + { + "_id": "req_f9774214bb754107818e8ade02b2c664", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1702991361578, + "created": 1680682418143, + "url": "{{IRS_HOST}}/ess/bpn/investigations", + "name": "Register Job Investigation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418143, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_46d3f6585fc9478a9c2867fee821ac64", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418151, + "created": 1680682418151, + "name": "ESS Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418151, + "_type": "request_group" + }, + { + "_id": "req_3d24c6fdc4fb4f6f9749236e1a7b800a", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1705942138125, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", + "name": "Get registered investigation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418138.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_aff549831f8c45c28f17b16d16a9971f", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1702991370481, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Search for investigation by jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418134, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_7917cf051540431aa6eb72fe167f1cd1", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1710076303275, + "created": 1680682418118, + "url": "{{IRS_HOST}}/irs/orders", + "name": "Register Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418118, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418128, + "created": 1680682418128, + "name": "Batch Processing", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418128, + "_type": "request_group" + }, + { + "_id": "req_5ca464846cf14393b5dccc09eab1ff94", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991390349, + "created": 1696342619602, + "url": "{{IRS_HOST}}/irs/ess/orders", + "name": "Register ESS Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418113.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d2936baa5fc846e99b6a1fd90e76f360", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1705006936944, + "created": 1705006139836, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Cancel order job for given orderId", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_88db8badf4ea4a0d9968c769167407c8" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418111.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ebf5ce9b4ff44918bd8c320ffb9d37aa", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991398473, + "created": 1680682418109, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Search for given orderId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418109, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_15442d1e3d134b3a9d5166fdffd58e21", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991409664, + "created": 1680682418099, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", + "name": "Search for given orderId and batchId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418099, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_374c63a9e933495aa538c64cf0ce5e9c", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1690472186478, + "created": 1678358655308, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722939.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1690362660167, + "created": 1690362660167, + "name": "Catalog", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1690362660167, + "_type": "request_group" + }, + { + "_id": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1690363778601, + "created": 1675675609576, + "name": "EDC-Requests", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418078, + "_type": "request_group" + }, + { + "_id": "req_d1fca9b114cb4765a6cc14ed42328981", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1691500654267, + "created": 1685521485278, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with registry filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722889.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d8228ae795f741f0a3ee41c44c731532", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1705940987109, + "created": 1691654388376, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with asset filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722789.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9f6323d57e5645078c67c2634a91dedc", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691578280640, + "created": 1675675609557, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", + "name": "Start contract negotiation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511095, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_356464095be447bd8e7a7733cc997f28", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1684146626847, + "created": 1684146519491, + "name": "Negotiation", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1679911060327.75, + "_type": "request_group" + }, + { + "_id": "req_b3e48d06eb7e4a85813c8425a740ad25", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690362123962, + "created": 1675675609549, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", + "name": "Get contract negotiation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511045, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0092fa60fd8f4596ab3d1eab70400592", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690362117725, + "created": 1685444139708, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", + "name": "Cancel contract negotation", + "description": "", + "method": "POST", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511020, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_33efa480448244a7b9bfcdb9e91d0aa6", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361721223, + "created": 1681911985730, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", + "name": "Get contract negotiations", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510995, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_4e9a65bd315a406aab742ae5abb5d15a", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691578311420, + "created": 1675675609541, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", + "name": "Start transferprocess", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510945, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b38860166a534a858832ae622becb8a9", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691503370103, + "created": 1679993996270, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", + "name": "Get transferprocess by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510895, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d574e6886e1d4436a2aeb9dec6c2c0bc", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361795179, + "created": 1675675609525, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", + "name": "Get transferprocesses", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510845, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_92bacd622f69483f9798e6e8cbbe1169", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361763512, + "created": 1681910653593, + "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", + "name": "Get contract agreements", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510795, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_35011172f7ab4e3697591dac19fbeda3", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362947546, + "created": 1681907482278, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", + "name": "Create Asset", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033461.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_180cf8ac3da346639736153e59ab9852", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1705940929752, + "created": 1684146457388, + "name": "Provider", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1678852197613.5625, + "_type": "request_group" + }, + { + "_id": "req_50deb85fb48b4db49c6bec6b4919ae99", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362407763, + "created": 1685444139630, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Asset by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033452.375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_dd70aba7bf7141dbbda60a448dd13cb8", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362438115, + "created": 1685444139625, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", + "name": "Get all Assets", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033447.6875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_83381a3e5e874d6fa62ddc82a4a7922e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362400081, + "created": 1685444139636, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Asset", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033433.625, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2bdec1164b8d4ba9b8049a1e015ce78e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362581978, + "created": 1685444139641, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", + "name": "Create Policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033403.9375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e5a34fa4eabb495b9dbc69803edcb8c5", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362549290, + "created": 1685444139647, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Policy by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033364.0937, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3726a3d5cc8c4176949f9c1affd63967", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362591799, + "created": 1685444139653, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", + "name": "Get all Policies", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033344.1719, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1fb5786a714140be9cf6e8c69a8ab3a2", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362559324, + "created": 1685444139659, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Policy by ID", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033299.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d3310b777935406197ee45619c6955c6", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363080444, + "created": 1685444139665, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", + "name": "Create Contract Definitinion", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033261.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_034858006e4544b1aee573fbd1deae9e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362691392, + "created": 1685444139672, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Contract Definition by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033199.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e3d06a47af8c46dc9851be7d2f1f9a42", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363126919, + "created": 1685444139678, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", + "name": "Get all Contract Definitinions", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033174.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_bf171046032b4e0ea390f326c9a2f555", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363136216, + "created": 1685444139684, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Contract Definition", + "description": "", + "method": "DELETE", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033149.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "env_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1680782486844, + "created": 1680782486844, + "name": "Base Environment", + "data": {}, + "dataPropertyOrder": null, + "color": null, + "isPrivate": false, + "metaSortKey": 1680782486844, + "_type": "environment" + }, + { + "_id": "jar_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1712668849719, + "created": 1680782486851, + "name": "Default Jar", + "cookies": [ + { + "key": "KC_RESTART", + "expires": "1970-01-01T00:00:10.000Z", + "maxAge": 0, + "domain": "centralidp.int.demo.catena-x.net", + "path": "/auth/realms/CX-Central/", + "httpOnly": true, + "extensions": [ + "Version=1" + ], + "hostOnly": true, + "creation": "2023-04-06T13:30:18.499Z", + "lastAccessed": "2024-04-09T13:20:49.719Z", + "id": "5690562525597758" + }, + { + "key": "KC_RESTART", + "expires": "1970-01-01T00:00:10.000Z", + "maxAge": 0, + "domain": "centralidp-pen.dev.demo.catena-x.net", + "path": "/auth/realms/CX-Central/", + "httpOnly": true, + "extensions": [ + "Version=1" + ], + "hostOnly": true, + "creation": "2024-02-13T11:37:30.975Z", + "lastAccessed": "2024-02-13T11:54:54.713Z", + "id": "69183304528381" + } + ], + "_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 f33d178fe4133b481dcea7018fde6e8fe25926c0 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 15 Apr 2024 12:27:12 +0200 Subject: [PATCH 96/96] feat(impl):[#517] updated insomnia collection --- .../IRS_Request_Collection.json | 7194 ++++++++--------- 1 file changed, 3597 insertions(+), 3597 deletions(-) diff --git a/local/testing/request-collection/IRS_Request_Collection.json b/local/testing/request-collection/IRS_Request_Collection.json index 61cc39b27f..bc3df3516b 100644 --- a/local/testing/request-collection/IRS_Request_Collection.json +++ b/local/testing/request-collection/IRS_Request_Collection.json @@ -1,3599 +1,3599 @@ { - "_type": "export", - "__export_format": 4, - "__export_date": "2024-04-15T07:56:11.237Z", - "__export_source": "insomnia.desktop.app:v2023.5.8", - "resources": [ - { - "_id": "req_1f30ad95b4814ec39132f47bc270cedf", - "parentId": "fld_af826750e6ad41dbad291333a64f2dca", - "modified": 1705006817408, - "created": 1705005887617, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get all policies", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1705005887617, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_af826750e6ad41dbad291333a64f2dca", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1687243055015, - "created": 1687243055015, - "name": "Policy Store", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1687243055015, - "_type": "request_group" - }, - { - "_id": "fld_5de60849f6444f6f9d543051dfc1b83a", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1691572726194, - "created": 1680682418636, - "name": "IRS DEMO Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418636, - "_type": "request_group" - }, - { - "_id": "wrk_565df8abe30f4da29d8bffcde97927d7", - "parentId": null, - "modified": 1680682438221, - "created": 1680682419747, - "name": "IRS", - "description": "", - "scope": "collection", - "_type": "workspace" - }, - { - "_id": "req_82357f1f7e9e44d985f045e8c2342237", - "parentId": "fld_af826750e6ad41dbad291333a64f2dca", - "modified": 1712736856772, - "created": 1711449523700, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Get policies for BPN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "id": "pair_8482da576c10480b9f7edf7a4aa752c6", - "name": "businessPartnerNumbers", - "value": "BPNL1234567890AB", - "description": "", - "disabled": false - }, - { - "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", - "name": "businessPartnerNumbers", - "value": "BPNL1234567890XX", - "description": "", - "disabled": false - } - ], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1703116992024, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f5cf53dba53e4fd7b91452e99d924db8", - "parentId": "fld_af826750e6ad41dbad291333a64f2dca", - "modified": 1702990529632, - "created": 1687243204155, - "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", - "name": "Delete policy", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1685602897140.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_320eee8efd384f25a36f9911fc105ce0", - "parentId": "fld_af826750e6ad41dbad291333a64f2dca", - "modified": 1712736811711, - "created": 1693576003390, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Update policies", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policy-id12\"\n\t]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684874704117.875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_43e0684544204340a9227c96c234b986", - "parentId": "fld_af826750e6ad41dbad291333a64f2dca", - "modified": 1712736780844, - "created": 1687243182397, - "url": "{{IRS_HOST}}/irs/policies", - "name": "Register policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL1234567890AB\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.ADMIN_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1683962737633.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3663f0d6d0a84f778728d6212e2e4452", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003275081, - "created": 1680682418619, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", - "name": "Get Shell by aasIdentifier", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418619, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_bc26470cb00d4d64bc19be6755f25f00", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1691504187689, - "created": 1680682418630, - "name": "Digital Twin Registry", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418630, - "_type": "request_group" - }, - { - "_id": "req_025d858a7e7744289e1e947105333bd7", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706002920212, - "created": 1690529035794, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", - "name": "Get Shells", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418614, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_711662a8951d47c49556a24b558dd62b", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003278149, - "created": 1680682418609, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By BPN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", - "disabled": true, - "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", - "disabled": true, - "id": "pair_cc48c08e3b834497a2d88bd4201c3867" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", - "disabled": false, - "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", - "disabled": true, - "id": "pair_706e6930cc874343941b744a054ef388" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", - "disabled": true, - "id": "pair_45c6bcf3266a475891ebbbba6cde0798" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", - "disabled": true, - "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", - "disabled": true, - "id": "pair_d72f55c7bf714c7c9aae58456c778443" - }, - { - "name": "assetIds", - "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", - "disabled": true, - "id": "pair_406c9da4dc014fb297f70bb3da7128c1" - } - ], - "headers": [ - { - "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418609, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_49a66feb305448aeba7d30d7dd608166", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003280850, - "created": 1680682418595, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By VAN", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", - "disabled": false, - "id": "pair_50d86e928e9f448d97da8ada0390e12f" - } - ], - "headers": [ - { - "id": "pair_ed11c2a6df9248e292914df944e8ba93", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418595, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3ce036e7a0484363abcdf29571974aed", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003354109, - "created": 1680682418581, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "assetIds", - "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", - "disabled": false, - "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" - } - ], - "headers": [ - { - "id": "pair_71ae5e562e9c414a82e84220f3c00343", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418581, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_61d92a9abade4718b3347eb48ed6e995", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003284715, - "created": 1680682418570, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By VAN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_2f4c445074514f92a4dee92554053d0a" - }, - { - "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418570, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1c406ce78cc4495681e3f9bbafa43493", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003286642, - "created": 1691408320970, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", - "name": "Query Registry By globalAssetId", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" - }, - { - "id": "pair_5dc1d703196747318faff9a8dd96be0c", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "" - } - ], - "authentication": {}, - "metaSortKey": -1680682418560.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b9e1dd78b327487487cc53559ba3707d", - "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", - "modified": 1706003289343, - "created": 1689167429413, - "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Shell by aasIdentifier", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [ - { - "id": "pair_6266690c04fd466fa1617082f5b8ec76", - "name": "pageSize", - "value": "50", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "id": "pair_7877c58fd3ae46758cabf9f6cb397818", - "name": "Edc-Bpn", - "value": "BPNL00000001CRHK", - "description": "", - "disabled": false - } - ], - "authentication": {}, - "metaSortKey": -1680682418470, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0b71020848164f0b81c3ecdb8fdd58e2", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991054859, - "created": 1680682418551, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.0.0 [Register Job]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418551, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_50286f7d5d454684b8aba9765d6e3855", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418562, - "created": 1680682418562, - "name": "IRS Test Collection", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418562, - "_type": "request_group" - }, - { - "_id": "req_aa365dbdfe984b0ebd551ba074ea10c3", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991058493, - "created": 1680682418539, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.0 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418539, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_65f8af5a42494c3ca02568b7dfae1d62", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991063641, - "created": 1680682418524, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.1.1 [Register Job globalAssetId ]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418524, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b1c6a3ac35004cfeaefac5a2bb0dda5a", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991067797, - "created": 1680682418514, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418514, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ab6d6199c2d24e90a848eee6ea78109f", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991071709, - "created": 1680682418504, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418504, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f3399d84f94740d68afb0e9a7e8fa0f1", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991076696, - "created": 1695042901876, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418496, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ff728ed6ad5d4e52acc8a6d735f76929", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076144872, - "created": 1680682418488, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.0 [Register Job with aspect SerialPart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418488, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_57dbf280a39f488f802a2f4e7474c161", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076455844, - "created": 1680682418479, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418479, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0286ed482b0a467880d9cdcb73942498", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1712222178406, - "created": 1680682418469, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418469, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3240716443ef458187b8601a1664e39c", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076741632, - "created": 1680682418442, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.3 [Register Job with aspect PartAsPlanned]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418442, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_23625e9b7a6a414ca52074bd2d2bb44f", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076751758, - "created": 1680682418432, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.4 [Register Job with upward direction]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418432, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ac5b82e7eb07402381b4250fc209cd65", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1712222124387, - "created": 1695192937155, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.5 [Register Job with aspect JustInSequencePart]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418428, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_5bd9f681a9d64799928f9a6391db4088", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1712222106070, - "created": 1695192971825, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418426, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a607e76dd9c844b7b9dbd74069ac6ced", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076214310, - "created": 1680682418424, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418424, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_398cafd7dc0946e1bb9d173c0fb1f019", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991130711, - "created": 1680682418414, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418414, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a5528db1444448bfb3897f6805615e41", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1713167745641, - "created": 1680682418401, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.5.0 [Register Job with all aspect type]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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:samm:io.catenax.battery.product_description:1.0.1#ProductDescription\",\n\t\t\"urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer\",\n\t\t\"urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\",\n\t\t\"urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension\",\n\t\t\"urn:samm:io.catenax.return_request:1.0.1#ReturnRequest\",\n\t\t\"urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\",\n\t\t\"urn:samm:io.catenax.part_as_planned:2.0.0#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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418401, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d47afad7fc814583b0b51b34c32f7956", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076677384, - "created": 1680682418392, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.6.0 [Register Job with BPN lookup]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418392, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_c10f4f5ba1ef4030a3238f793b6456fa", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076237949, - "created": 1683184048412, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.7.0 [Register Job with invalid policy]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418386.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6c09857d7c404d3b96ceb84241674869", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076397373, - "created": 1693493383337, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.0 [Register Job with data integrity success]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418382.375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_336ddd957bee488e8e1ee44d8feee23c", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076245754, - "created": 1693493584873, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.1 [Register Job with data integrity wrong hash]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.6875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2081e1206173466eac0b516e138b83ae", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076391502, - "created": 1693493594373, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.2 [Register Job with data integrity wrong signature]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.3438, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_7408834739394ad8914108c2c55af11f", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1710076385497, - "created": 1693493604521, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381.1719, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_934b2c3546964dbba0154c0b5d6affd6", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991173689, - "created": 1680682418381, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.0 [Search for completed Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "COMPLETED", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418381, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1ca399d41b914d38839e434ed9b324e9", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991177973, - "created": 1680682418372, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.1 [Search for Jobs in error state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418372, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a6624384545844c192396bb6a8ba4ed1", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991182139, - "created": 1680682418358, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.2 [Search for Jobs in initial state]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "INITIAL", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418358, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d9939ead26f9426b8fa0335022261db7", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991186114, - "created": 1680682418348, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.0.3 [Search for all Jobs in JobStore]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418348, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_981c712ae0aa404c9f2a76a37a32beb4", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991190326, - "created": 1680682418339, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "2.1.0 [Search for running Jobs]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "RUNNING", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418339, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_682d405fe865408b9466cbe854360861", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991196283, - "created": 1680682418325, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.0.0 [Search for given jobId with uncomplete]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418325, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_89ab9dac1e164e4c8685fe13a891d83a", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991200399, - "created": 1680682418316, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "3.1.0 [Search for given jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418316, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_a9c9ca4c15af4ff892cd4b4d0d5b4ac9", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991205447, - "created": 1680682418307, - "url": "{{IRS_HOST}}/irs/jobs/test", - "name": "3.1.1 [Search for invalid jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418307, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_00bd7b14057f4764ac46e5512b9db6ac", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991214202, - "created": 1680682418297, - "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", - "name": "3.1.2 [Search for unknown jobId]", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418297, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_6fe9f28aacbc46cb952332925a6b66b6", - "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", - "modified": 1702991218362, - "created": 1680682418280, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "6.0.0 [Cancel Job for given jobId]", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418280, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b77302d3e4c54ea9bccd588aa40d6e06", - "parentId": "fld_272800c031334bd984de7da6b9a84881", - "modified": 1705942015684, - "created": 1682672699249, - "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", - "name": "Find BPN endpoints for manufacturer numbers", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630902023, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_272800c031334bd984de7da6b9a84881", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1683630931664, - "created": 1683630887514, - "name": "Discovery", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418417.5, - "_type": "request_group" - }, - { - "_id": "req_4e371616910b4939834e590574434f8d", - "parentId": "fld_272800c031334bd984de7da6b9a84881", - "modified": 1705942027574, - "created": 1683031718699, - "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", - "name": "Find BPN Discovery Endpoints of type BPN", - "description": "", - "method": "POST", - "body": { - "mimeType": "", - "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901923, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_96b48f84945e4a139c43b347081dea1d", - "parentId": "fld_272800c031334bd984de7da6b9a84881", - "modified": 1705942036978, - "created": 1683560906453, - "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", - "name": "Find EDC endpoints for BPNs", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "[\n\t\"BPNL00000001CRHK\"\n]" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", - "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", - "disabled": false - }, - "metaSortKey": -1683630901873, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_19b0215781524f3ba61025cdf8ff24c9", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1710076352238, - "created": 1680682418265, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Register Job", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418265, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_f46e575b1932435b9eaca816c878139d", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418273, - "created": 1680682418273, - "name": "IRS Basic API Calls", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418273, - "_type": "request_group" - }, - { - "_id": "req_eed24d5541f042f7b35258a85715376c", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1705942154792, - "created": 1680682418238, - "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", - "name": "Get registered Job", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418261, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_252a950f231d4af6978078f3333816ea", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1702991288793, - "created": 1680682418257, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for all Jobs in JobStore", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418257, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2dff37767bae4b3e92e3735c20a203b5", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1702991284435, - "created": 1680682418247, - "url": "{{IRS_HOST}}/irs/jobs", - "name": "Search for Jobs for given state", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "states", - "value": "ERROR", - "disabled": true, - "id": "pair_c694b66f41e649db837f801b5699859e" - }, - { - "name": "states", - "value": "CANCELED,COMPLETED", - "disabled": false, - "id": "pair_ab346623e5394504b7232cc40ae75bed" - }, - { - "id": "pair_ddbccd5219944e8cac3d99249ba881e5", - "name": "states", - "value": "RUNNING", - "description": "", - "disabled": true - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418247, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1d8a5d751d914257a1c52b9ee6449f06", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1703236659047, - "created": 1690384427379, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Get Job for jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "returnUncompletedJob", - "value": "true", - "disabled": false - } - ], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418238, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1e867216fa0b4e40a4d002b5f09e48ea", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1702991276045, - "created": 1680682418229, - "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Cancel Job for jobId", - "description": "", - "method": "PUT", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418229, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_21a6d5cb7990445db301e5811b36e09e", - "parentId": "fld_f46e575b1932435b9eaca816c878139d", - "modified": 1702991272198, - "created": 1682498338739, - "url": "{{IRS_HOST}}/irs/aspectmodels", - "name": "Get all available Aspect Models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418179, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ef073a9c3df443d28211b4a47c86efcc", - "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", - "modified": 1705942066941, - "created": 1680682418213, - "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", - "name": "Get all models", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "pageSize", - "value": "100", - "disabled": false, - "id": "pair_96567b64925d4487bae4c74bfa9e021e" - }, - { - "id": "pair_2dae68db8a564296a5835e66d951331f", - "name": "status", - "value": "RELEASED", - "description": "" - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418213, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_0240862432fa4a45943e9292fdc4bef2", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418222, - "created": 1680682418222, - "name": "Semantics Hub", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418222, - "_type": "request_group" - }, - { - "_id": "req_4b8bf2eb52e5421c9813cf51b7af7b28", - "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", - "modified": 1705942077015, - "created": 1680682418204, - "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", - "name": "Get SerialPartTypization", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418204, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_f6eafa824d5b43efb88a4ccdeefa1583", - "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", - "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", - "name": "Get SerialPartTypization Json Schema", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", - "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418192, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1284cf1d5074402f932b68b96d9bc927", - "parentId": "fld_ecf376d268ed403d85415925a9876340", - "modified": 1705942100313, - "created": 1680682418174, - "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", - "name": "Get business partner by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [ - { - "name": "idType", - "value": "BPN", - "disabled": false - } - ], - "headers": [], - "authentication": { - "type": "oauth2", - "grantType": "client_credentials", - "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", - "clientId": "{{ _.BPDM_CLIENT_ID }}", - "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" - }, - "metaSortKey": -1680682418174, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_ecf376d268ed403d85415925a9876340", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418184, - "created": 1680682418184, - "name": "Business partner data management", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418184, - "_type": "request_group" - }, - { - "_id": "req_958372128cd94531b9153539a95ff025", - "parentId": "fld_f08715e4a303459d9c66b22f0ea2fee7", - "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", - "name": "Get Esr Statistics", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418158, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_f08715e4a303459d9c66b22f0ea2fee7", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418167, - "created": 1680682418167, - "name": "ESR Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418167, - "_type": "request_group" - }, - { - "_id": "req_f9774214bb754107818e8ade02b2c664", - "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", - "modified": 1702991361578, - "created": 1680682418143, - "url": "{{IRS_HOST}}/ess/bpn/investigations", - "name": "Register Job Investigation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418143, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_46d3f6585fc9478a9c2867fee821ac64", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418151, - "created": 1680682418151, - "name": "ESS Spike", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418151, - "_type": "request_group" - }, - { - "_id": "req_3d24c6fdc4fb4f6f9749236e1a7b800a", - "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", - "modified": 1705942138125, - "created": 1680682418134, - "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", - "name": "Get registered investigation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418138.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_aff549831f8c45c28f17b16d16a9971f", - "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", - "modified": 1702991370481, - "created": 1680682418134, - "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", - "name": "Search for investigation by jobId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418134, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_7917cf051540431aa6eb72fe167f1cd1", - "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "modified": 1710076303275, - "created": 1680682418118, - "url": "{{IRS_HOST}}/irs/orders", - "name": "Register Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418118, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1680682418128, - "created": 1680682418128, - "name": "Batch Processing", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418128, - "_type": "request_group" - }, - { - "_id": "req_5ca464846cf14393b5dccc09eab1ff94", - "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "modified": 1702991390349, - "created": 1696342619602, - "url": "{{IRS_HOST}}/irs/ess/orders", - "name": "Register ESS Batch Order", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418113.5, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d2936baa5fc846e99b6a1fd90e76f360", - "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "modified": 1705006936944, - "created": 1705006139836, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Cancel order job for given orderId", - "description": "", - "method": "PUT", - "body": { - "mimeType": "application/json", - "text": "{}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json", - "id": "pair_88db8badf4ea4a0d9968c769167407c8" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418111.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_ebf5ce9b4ff44918bd8c320ffb9d37aa", - "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "modified": 1702991398473, - "created": 1680682418109, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", - "name": "Search for given orderId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418109, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_15442d1e3d134b3a9d5166fdffd58e21", - "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", - "modified": 1702991409664, - "created": 1680682418099, - "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", - "name": "Search for given orderId and batchId", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-API-KEY", - "value": "{{ _.REGULAR_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1680682418099, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_374c63a9e933495aa538c64cf0ce5e9c", - "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", - "modified": 1690472186478, - "created": 1678358655308, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722939.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_502cfa569e234dfbaf8d32e9a00a6a48", - "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", - "modified": 1690362660167, - "created": 1690362660167, - "name": "Catalog", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1690362660167, - "_type": "request_group" - }, - { - "_id": "fld_e12f52232f2e4ccbb8a92a5422e24094", - "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", - "modified": 1690363778601, - "created": 1675675609576, - "name": "EDC-Requests", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1680682418078, - "_type": "request_group" - }, - { - "_id": "req_d1fca9b114cb4765a6cc14ed42328981", - "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", - "modified": 1691500654267, - "created": 1685521485278, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with registry filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722889.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d8228ae795f741f0a3ee41c44c731532", - "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", - "modified": 1705940987109, - "created": 1691654388376, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", - "name": "Get catalog with asset filter", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1686195722789.1875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_9f6323d57e5645078c67c2634a91dedc", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1691578280640, - "created": 1675675609557, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", - "name": "Start contract negotiation", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511095, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_356464095be447bd8e7a7733cc997f28", - "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", - "modified": 1684146626847, - "created": 1684146519491, - "name": "Negotiation", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1679911060327.75, - "_type": "request_group" - }, - { - "_id": "req_b3e48d06eb7e4a85813c8425a740ad25", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1690362123962, - "created": 1675675609549, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", - "name": "Get contract negotiation", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511045, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_0092fa60fd8f4596ab3d1eab70400592", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1690362117725, - "created": 1685444139708, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", - "name": "Cancel contract negotation", - "description": "", - "method": "POST", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146511020, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_33efa480448244a7b9bfcdb9e91d0aa6", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1690361721223, - "created": 1681911985730, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", - "name": "Get contract negotiations", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510995, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_4e9a65bd315a406aab742ae5abb5d15a", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1691578311420, - "created": 1675675609541, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", - "name": "Start transferprocess", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510945, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_b38860166a534a858832ae622becb8a9", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1691503370103, - "created": 1679993996270, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", - "name": "Get transferprocess by id", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510895, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d574e6886e1d4436a2aeb9dec6c2c0bc", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1690361795179, - "created": 1675675609525, - "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", - "name": "Get transferprocesses", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510845, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_92bacd622f69483f9798e6e8cbbe1169", - "parentId": "fld_356464095be447bd8e7a7733cc997f28", - "modified": 1690361763512, - "created": 1681910653593, - "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", - "name": "Get contract agreements", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1684146510795, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_35011172f7ab4e3697591dac19fbeda3", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362947546, - "created": 1681907482278, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", - "name": "Create Asset", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033461.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "fld_180cf8ac3da346639736153e59ab9852", - "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", - "modified": 1705940929752, - "created": 1684146457388, - "name": "Provider", - "description": "", - "environment": {}, - "environmentPropertyOrder": null, - "metaSortKey": -1678852197613.5625, - "_type": "request_group" - }, - { - "_id": "req_50deb85fb48b4db49c6bec6b4919ae99", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362407763, - "created": 1685444139630, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Asset by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033452.375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_dd70aba7bf7141dbbda60a448dd13cb8", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362438115, - "created": 1685444139625, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", - "name": "Get all Assets", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033447.6875, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_83381a3e5e874d6fa62ddc82a4a7922e", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362400081, - "created": 1685444139636, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", - "name": "Delete Asset", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033433.625, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_2bdec1164b8d4ba9b8049a1e015ce78e", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362581978, - "created": 1685444139641, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", - "name": "Create Policy", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033403.9375, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e5a34fa4eabb495b9dbc69803edcb8c5", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362549290, - "created": 1685444139647, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Policy by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033364.0937, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_3726a3d5cc8c4176949f9c1affd63967", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362591799, - "created": 1685444139653, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", - "name": "Get all Policies", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033344.1719, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_1fb5786a714140be9cf6e8c69a8ab3a2", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362559324, - "created": 1685444139659, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Policy by ID", - "description": "", - "method": "DELETE", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033299.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_d3310b777935406197ee45619c6955c6", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690363080444, - "created": 1685444139665, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", - "name": "Create Contract Definitinion", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033261.75, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_034858006e4544b1aee573fbd1deae9e", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690362691392, - "created": 1685444139672, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Get Contract Definition by ID", - "description": "", - "method": "GET", - "body": {}, - "parameters": [], - "headers": [], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033199.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_e3d06a47af8c46dc9851be7d2f1f9a42", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690363126919, - "created": 1685444139678, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", - "name": "Get all Contract Definitinions", - "description": "", - "method": "POST", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033174.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "req_bf171046032b4e0ea390f326c9a2f555", - "parentId": "fld_180cf8ac3da346639736153e59ab9852", - "modified": 1690363136216, - "created": 1685444139684, - "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", - "name": "Delte Contract Definition", - "description": "", - "method": "DELETE", - "body": { - "mimeType": "application/json", - "text": "" - }, - "parameters": [], - "headers": [ - { - "name": "Content-Type", - "value": "application/json" - } - ], - "authentication": { - "type": "apikey", - "disabled": false, - "key": "X-Api-Key", - "value": "{{ _.EDC_API_KEY }}", - "addTo": "header" - }, - "metaSortKey": -1679911033149.25, - "isPrivate": false, - "settingStoreCookies": true, - "settingSendCookies": true, - "settingDisableRenderRequestBody": false, - "settingEncodeUrl": true, - "settingRebuildPath": true, - "settingFollowRedirects": "global", - "_type": "request" - }, - { - "_id": "env_d2b7eb1621841465ea24b73343568b286aa8ac9a", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1680782486844, - "created": 1680782486844, - "name": "Base Environment", - "data": {}, - "dataPropertyOrder": null, - "color": null, - "isPrivate": false, - "metaSortKey": 1680782486844, - "_type": "environment" - }, - { - "_id": "jar_d2b7eb1621841465ea24b73343568b286aa8ac9a", - "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", - "modified": 1712668849719, - "created": 1680782486851, - "name": "Default Jar", - "cookies": [ - { - "key": "KC_RESTART", - "expires": "1970-01-01T00:00:10.000Z", - "maxAge": 0, - "domain": "centralidp.int.demo.catena-x.net", - "path": "/auth/realms/CX-Central/", - "httpOnly": true, - "extensions": [ - "Version=1" - ], - "hostOnly": true, - "creation": "2023-04-06T13:30:18.499Z", - "lastAccessed": "2024-04-09T13:20:49.719Z", - "id": "5690562525597758" - }, - { - "key": "KC_RESTART", - "expires": "1970-01-01T00:00:10.000Z", - "maxAge": 0, - "domain": "centralidp-pen.dev.demo.catena-x.net", - "path": "/auth/realms/CX-Central/", - "httpOnly": true, - "extensions": [ - "Version=1" - ], - "hostOnly": true, - "creation": "2024-02-13T11:37:30.975Z", - "lastAccessed": "2024-02-13T11:54:54.713Z", - "id": "69183304528381" - } - ], - "_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" - } - ] + "_type": "export", + "__export_format": 4, + "__export_date": "2024-04-15T07:56:11.237Z", + "__export_source": "insomnia.desktop.app:v2023.5.8", + "resources": [ + { + "_id": "req_1f30ad95b4814ec39132f47bc270cedf", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1705006817408, + "created": 1705005887617, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get all policies", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1705005887617, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_af826750e6ad41dbad291333a64f2dca", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1687243055015, + "created": 1687243055015, + "name": "Policy Store", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1687243055015, + "_type": "request_group" + }, + { + "_id": "fld_5de60849f6444f6f9d543051dfc1b83a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1691572726194, + "created": 1680682418636, + "name": "IRS DEMO Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418636, + "_type": "request_group" + }, + { + "_id": "wrk_565df8abe30f4da29d8bffcde97927d7", + "parentId": null, + "modified": 1680682438221, + "created": 1680682419747, + "name": "IRS", + "description": "", + "scope": "collection", + "_type": "workspace" + }, + { + "_id": "req_82357f1f7e9e44d985f045e8c2342237", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736856772, + "created": 1711449523700, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Get policies for BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "id": "pair_8482da576c10480b9f7edf7a4aa752c6", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890AB", + "description": "", + "disabled": false + }, + { + "id": "pair_ec0ce8fad21144aaa531cbbcb941f522", + "name": "businessPartnerNumbers", + "value": "BPNL1234567890XX", + "description": "", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1703116992024, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f5cf53dba53e4fd7b91452e99d924db8", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1702990529632, + "created": 1687243204155, + "url": "{{IRS_HOST}}/irs/policies/{% prompt 'policyId', '', 'traceability-test', '', false, true %}", + "name": "Delete policy", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1685602897140.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_320eee8efd384f25a36f9911fc105ce0", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736811711, + "created": 1693576003390, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Update policies", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{\n \"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumbers\": [\n\t\t\"BPNL00000001CRHK\"\n\t],\n\t\"policyIds\": [\n\t\t\"policy-id12\"\n\t]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684874704117.875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_43e0684544204340a9227c96c234b986", + "parentId": "fld_af826750e6ad41dbad291333a64f2dca", + "modified": 1712736780844, + "created": 1687243182397, + "url": "{{IRS_HOST}}/irs/policies", + "name": "Register policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL1234567890AB\",\n\t\"payload\":\n\t\t{\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"mf-policy-4\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.ADMIN_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1683962737633.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3663f0d6d0a84f778728d6212e2e4452", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003275081, + "created": 1680682418619, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'aasIdentifier', '', _.GLOBAL_ASSET_ID, '', false, true %}", + "name": "Get Shell by aasIdentifier", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418619, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_bc26470cb00d4d64bc19be6755f25f00", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1691504187689, + "created": 1680682418630, + "name": "Digital Twin Registry", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418630, + "_type": "request_group" + }, + { + "_id": "req_025d858a7e7744289e1e947105333bd7", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706002920212, + "created": 1690529035794, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors", + "name": "Get Shells", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418614, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_711662a8951d47c49556a24b558dd62b", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003278149, + "created": 1680682418609, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By BPN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AYRE\"}],", + "disabled": true, + "id": "pair_c8a20aa6fd7647a98da9b91abfe0cfa8" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AVTH\"}],", + "disabled": true, + "id": "pair_cc48c08e3b834497a2d88bd4201c3867" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AZQP\"}]", + "disabled": false, + "id": "pair_4187c8b0b8894410a17eb0ff2cf1523a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B2OM\"}],", + "disabled": true, + "id": "pair_706e6930cc874343941b744a054ef388" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B3NX\"}],", + "disabled": true, + "id": "pair_45c6bcf3266a475891ebbbba6cde0798" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B5MJ\"}],", + "disabled": true, + "id": "pair_89445c9795e54bbfa1e26dae0fe4756a" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003B0Q0\"}],", + "disabled": true, + "id": "pair_d72f55c7bf714c7c9aae58456c778443" + }, + { + "name": "assetIds", + "value": "[{\"name\": \"manufacturerId\",\"value\":\"BPNL00000003AXS3\"}],", + "disabled": true, + "id": "pair_406c9da4dc014fb297f70bb3da7128c1" + } + ], + "headers": [ + { + "id": "pair_72e0b43ab2ba4417bbc72bf08182edd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418609, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_49a66feb305448aeba7d30d7dd608166", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003280850, + "created": 1680682418595, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By VAN", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"van\",\"value\": \"OMBSWNHVABEWMQTAV\"}]", + "disabled": false, + "id": "pair_50d86e928e9f448d97da8ada0390e12f" + } + ], + "headers": [ + { + "id": "pair_ed11c2a6df9248e292914df944e8ba93", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418595, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3ce036e7a0484363abcdf29571974aed", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003354109, + "created": 1680682418581, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "assetIds", + "value": "[{\"name\":\"globalAssetId\",\"value\":\"{% prompt 'id', '', '', '', false, true %}\"}]", + "disabled": false, + "id": "pair_f5f3d12fb2224c1d9e577c42128aa3d9" + } + ], + "headers": [ + { + "id": "pair_71ae5e562e9c414a82e84220f3c00343", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418581, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_61d92a9abade4718b3347eb48ed6e995", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003284715, + "created": 1680682418570, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By VAN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"query\": {\n \"assetIds\": [\n {\n \"value\" : \"OMCOFCRMXMBASAFZY\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCNAXRMATEMEDENV\",\n \"name\" : \"van\"\n }\n ,\n {\n \"value\" : \"OMCODXGPGLPLKEAIQ\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBGHXHATHICIEYOU\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMAGCJCBDQGPYRQCS\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMBIBCLBMGCJNUKUW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCRHSMILXFLDSPTT\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCLNVPYKUQCNIBOW\",\n \"name\" : \"van\"\n },\n {\n \"value\" : \"OMCXYXGFMJIBYQLBL\",\n \"name\" : \"van\"\n }\n ]\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_2f4c445074514f92a4dee92554053d0a" + }, + { + "id": "pair_35fe7a71647f4aea91ba03bfc87f0cd0", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418570, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1c406ce78cc4495681e3f9bbafa43493", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003286642, + "created": 1691408320970, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/lookup/shells/query", + "name": "Query Registry By globalAssetId", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n\t\"query\": {\n\t\t\"assetIds\": [\n\t\t\t{\n\t\t\t\t\"value\": \"urn:uuid:da53d429-5770-410e-a13e-424e77952d8a\",\n\t\t\t\t\"name\": \"globalAssetId\"\n\t\t\t}\n\t\t]\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_c1f8de03ff8f4f92aeeeef63510f755e" + }, + { + "id": "pair_5dc1d703196747318faff9a8dd96be0c", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "" + } + ], + "authentication": {}, + "metaSortKey": -1680682418560.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b9e1dd78b327487487cc53559ba3707d", + "parentId": "fld_bc26470cb00d4d64bc19be6755f25f00", + "modified": 1706003289343, + "created": 1689167429413, + "url": "{{DIGITAL_TWIN_REGISTRY}}/api/v3.0/shell-descriptors/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Shell by aasIdentifier", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [ + { + "id": "pair_6266690c04fd466fa1617082f5b8ec76", + "name": "pageSize", + "value": "50", + "description": "", + "disabled": true + } + ], + "headers": [ + { + "id": "pair_7877c58fd3ae46758cabf9f6cb397818", + "name": "Edc-Bpn", + "value": "BPNL00000001CRHK", + "description": "", + "disabled": false + } + ], + "authentication": {}, + "metaSortKey": -1680682418470, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0b71020848164f0b81c3ecdb8fdd58e2", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991054859, + "created": 1680682418551, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.0.0 [Register Job]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418551, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_50286f7d5d454684b8aba9765d6e3855", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418562, + "created": 1680682418562, + "name": "IRS Test Collection", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418562, + "_type": "request_group" + }, + { + "_id": "req_aa365dbdfe984b0ebd551ba074ea10c3", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991058493, + "created": 1680682418539, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.0 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:00000000-0000-0000-0000-000000000000\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418539, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_65f8af5a42494c3ca02568b7dfae1d62", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991063641, + "created": 1680682418524, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.1.1 [Register Job globalAssetId ]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:6c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b918ea936c311d29-5753-46d4-b32c-19b\",\n\t\t\"bpn\": \"{% prompt 'bpn', '', _.BPN, '', false, true %}\"\n\t},\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418524, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b1c6a3ac35004cfeaefac5a2bb0dda5a", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991067797, + "created": 1680682418514, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.0 [Register Job with depth and bomLifecycle asBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asBuilt\",\n\t\"depth\": 2,\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418514, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ab6d6199c2d24e90a848eee6ea78109f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991071709, + "created": 1680682418504, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.1 [Register Job with depth and bomLifecycle asPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asPlanned\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418504, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f3399d84f94740d68afb0e9a7e8fa0f1", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991076696, + "created": 1695042901876, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.2.2 [Register Job with depth and bomLifecycle asSpecified]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\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\"bomLifecycle\": \"asSpecified\",\n\t\"depth\": 2\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418496, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ff728ed6ad5d4e52acc8a6d735f76929", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076144872, + "created": 1680682418488, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.0 [Register Job with aspect SerialPart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418488, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_57dbf280a39f488f802a2f4e7474c161", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076455844, + "created": 1680682418479, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.1 [Register Job with aspect SerialPart and SingleLevelBomAsBuilt]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418479, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0286ed482b0a467880d9cdcb73942498", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222178406, + "created": 1680682418469, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.2 [Register Job with aspect MaterialForRecycling and BatteryPass]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418469, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3240716443ef458187b8601a1664e39c", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076741632, + "created": 1680682418442, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.3 [Register Job with aspect PartAsPlanned]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\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\"bomLifecycle\": \"asPlanned\",\n\t\"collectAspects\": true\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418442, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_23625e9b7a6a414ca52074bd2d2bb44f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076751758, + "created": 1680682418432, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.4 [Register Job with upward direction]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:3402b29d-07a6-42ad-80ff-272b50fbe24a\",\n\t\t\"bpn\": \"BPNL00000003AZQP\"\n\t},\n\t\"direction\": \"upward\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418432, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ac5b82e7eb07402381b4250fc209cd65", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222124387, + "created": 1695192937155, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.5 [Register Job with aspect JustInSequencePart]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418428, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_5bd9f681a9d64799928f9a6391db4088", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1712222106070, + "created": 1695192971825, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.3.6 [Register Job with aspect TractionBatteryCode]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418426, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a607e76dd9c844b7b9dbd74069ac6ced", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076214310, + "created": 1680682418424, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.0 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"urn:bamm:io.catenax.part_serial_typization:1.0.1#PartSerialTypization\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418424, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_398cafd7dc0946e1bb9d173c0fb1f019", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991130711, + "created": 1680682418414, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.4.1 [Register Job with invalid or not exisiting aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"aspects\": [\n\t\t\"\"\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418414, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a5528db1444448bfb3897f6805615e41", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1713167745641, + "created": 1680682418401, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.5.0 [Register Job with all aspect type]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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:samm:io.catenax.battery.product_description:1.0.1#ProductDescription\",\n\t\t\"urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer\",\n\t\t\"urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling\",\n\t\t\"urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension\",\n\t\t\"urn:samm:io.catenax.return_request:1.0.1#ReturnRequest\",\n\t\t\"urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode\",\n\t\t\"urn:samm:io.catenax.part_as_planned:2.0.0#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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418401, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d47afad7fc814583b0b51b34c32f7956", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076677384, + "created": 1680682418392, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.6.0 [Register Job with BPN lookup]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418392, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_c10f4f5ba1ef4030a3238f793b6456fa", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076237949, + "created": 1683184048412, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.7.0 [Register Job with invalid policy]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418386.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6c09857d7c404d3b96ceb84241674869", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076397373, + "created": 1693493383337, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.0 [Register Job with data integrity success]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418382.375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_336ddd957bee488e8e1ee44d8feee23c", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076245754, + "created": 1693493584873, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.1 [Register Job with data integrity wrong hash]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.6875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2081e1206173466eac0b516e138b83ae", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076391502, + "created": 1693493594373, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.2 [Register Job with data integrity wrong signature]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.3438, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_7408834739394ad8914108c2c55af11f", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1710076385497, + "created": 1693493604521, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "1.8.3 [Register Job with data integrity integrity aspect missing]", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381.1719, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_934b2c3546964dbba0154c0b5d6affd6", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991173689, + "created": 1680682418381, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.0 [Search for completed Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "COMPLETED", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418381, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1ca399d41b914d38839e434ed9b324e9", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991177973, + "created": 1680682418372, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.1 [Search for Jobs in error state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418372, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a6624384545844c192396bb6a8ba4ed1", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991182139, + "created": 1680682418358, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.2 [Search for Jobs in initial state]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "INITIAL", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418358, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d9939ead26f9426b8fa0335022261db7", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991186114, + "created": 1680682418348, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.0.3 [Search for all Jobs in JobStore]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418348, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_981c712ae0aa404c9f2a76a37a32beb4", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991190326, + "created": 1680682418339, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "2.1.0 [Search for running Jobs]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "RUNNING", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418339, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_682d405fe865408b9466cbe854360861", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991196283, + "created": 1680682418325, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.0.0 [Search for given jobId with uncomplete]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418325, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_89ab9dac1e164e4c8685fe13a891d83a", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991200399, + "created": 1680682418316, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "3.1.0 [Search for given jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418316, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_a9c9ca4c15af4ff892cd4b4d0d5b4ac9", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991205447, + "created": 1680682418307, + "url": "{{IRS_HOST}}/irs/jobs/test", + "name": "3.1.1 [Search for invalid jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418307, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_00bd7b14057f4764ac46e5512b9db6ac", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991214202, + "created": 1680682418297, + "url": "{{IRS_HOST}}/irs/jobs/00000000-0000-0000-0000-000000000000", + "name": "3.1.2 [Search for unknown jobId]", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418297, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_6fe9f28aacbc46cb952332925a6b66b6", + "parentId": "fld_50286f7d5d454684b8aba9765d6e3855", + "modified": 1702991218362, + "created": 1680682418280, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "6.0.0 [Cancel Job for given jobId]", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418280, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b77302d3e4c54ea9bccd588aa40d6e06", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942015684, + "created": 1682672699249, + "url": "{{ _.BPN_DISCOVERY }}/api/administration/connectors/bpnDiscovery/search", + "name": "Find BPN endpoints for manufacturer numbers", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"searchFilter\": [\n {\n \"type\": \"oen\",\n \"keys\": [\n \"oen-1243\",\n \"oen-11\"\n ]\n },\n {\n \"type\": \"bpid\",\n \"keys\": [\n \"bpid-1243\",\n \"bpid-11\"\n ]\n }\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630902023, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_272800c031334bd984de7da6b9a84881", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1683630931664, + "created": 1683630887514, + "name": "Discovery", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418417.5, + "_type": "request_group" + }, + { + "_id": "req_4e371616910b4939834e590574434f8d", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942027574, + "created": 1683031718699, + "url": "{{ _.DISCOVERY_FINDER }}/api/administration/connectors/discovery/search", + "name": "Find BPN Discovery Endpoints of type BPN", + "description": "", + "method": "POST", + "body": { + "mimeType": "", + "text": "{\n \"types\": [\n \"bpn\"\n ]\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901923, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_96b48f84945e4a139c43b347081dea1d", + "parentId": "fld_272800c031334bd984de7da6b9a84881", + "modified": 1705942036978, + "created": 1683560906453, + "url": "{{ _.EDC_DISCOVERY }}/api/administration/connectors/discovery", + "name": "Find EDC endpoints for BPNs", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "[\n\t\"BPNL00000001CRHK\"\n]" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.DISCOVERY_CLIENT_ID }}", + "clientSecret": "{{ _.DISCOVERY_CLIENT_SECRET }}", + "disabled": false + }, + "metaSortKey": -1683630901873, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_19b0215781524f3ba61025cdf8ff24c9", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1710076352238, + "created": 1680682418265, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Register Job", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418265, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_f46e575b1932435b9eaca816c878139d", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418273, + "created": 1680682418273, + "name": "IRS Basic API Calls", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418273, + "_type": "request_group" + }, + { + "_id": "req_eed24d5541f042f7b35258a85715376c", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1705942154792, + "created": 1680682418238, + "url": "{{IRS_HOST}}/irs/jobs/{% response 'body', 'req_b02ac0bfc4704c83a5c5f8b24175d61a', 'b64::JC5pZA==::46b', 'never', 60 %} ", + "name": "Get registered Job", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418261, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_252a950f231d4af6978078f3333816ea", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991288793, + "created": 1680682418257, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for all Jobs in JobStore", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418257, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2dff37767bae4b3e92e3735c20a203b5", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991284435, + "created": 1680682418247, + "url": "{{IRS_HOST}}/irs/jobs", + "name": "Search for Jobs for given state", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "states", + "value": "ERROR", + "disabled": true, + "id": "pair_c694b66f41e649db837f801b5699859e" + }, + { + "name": "states", + "value": "CANCELED,COMPLETED", + "disabled": false, + "id": "pair_ab346623e5394504b7232cc40ae75bed" + }, + { + "id": "pair_ddbccd5219944e8cac3d99249ba881e5", + "name": "states", + "value": "RUNNING", + "description": "", + "disabled": true + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418247, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1d8a5d751d914257a1c52b9ee6449f06", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1703236659047, + "created": 1690384427379, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Get Job for jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "returnUncompletedJob", + "value": "true", + "disabled": false + } + ], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418238, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1e867216fa0b4e40a4d002b5f09e48ea", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991276045, + "created": 1680682418229, + "url": "{{IRS_HOST}}/irs/jobs/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Cancel Job for jobId", + "description": "", + "method": "PUT", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418229, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_21a6d5cb7990445db301e5811b36e09e", + "parentId": "fld_f46e575b1932435b9eaca816c878139d", + "modified": 1702991272198, + "created": 1682498338739, + "url": "{{IRS_HOST}}/irs/aspectmodels", + "name": "Get all available Aspect Models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418179, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ef073a9c3df443d28211b4a47c86efcc", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "modified": 1705942066941, + "created": 1680682418213, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models", + "name": "Get all models", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "pageSize", + "value": "100", + "disabled": false, + "id": "pair_96567b64925d4487bae4c74bfa9e021e" + }, + { + "id": "pair_2dae68db8a564296a5835e66d951331f", + "name": "status", + "value": "RELEASED", + "description": "" + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418213, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_0240862432fa4a45943e9292fdc4bef2", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418222, + "created": 1680682418222, + "name": "Semantics Hub", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418222, + "_type": "request_group" + }, + { + "_id": "req_4b8bf2eb52e5421c9813cf51b7af7b28", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "modified": 1705942077015, + "created": 1680682418204, + "url": "{{ _.SEMANTIC_HUB_URL }}/hub/api/v1/models/urn%3Abamm%3Aio.catenax.serial_part_typization%3A1.0.0%23SerialPartTypization", + "name": "Get SerialPartTypization", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418204, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_f6eafa824d5b43efb88a4ccdeefa1583", + "parentId": "fld_0240862432fa4a45943e9292fdc4bef2", + "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", + "name": "Get SerialPartTypization Json Schema", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.SEMANTIC_HUB_CLIENT_ID }}", + "clientSecret": "{{ _.SEMANTIC_HUB_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418192, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1284cf1d5074402f932b68b96d9bc927", + "parentId": "fld_ecf376d268ed403d85415925a9876340", + "modified": 1705942100313, + "created": 1680682418174, + "url": "{{ _.BPDM_URL }}/v1/api/catena/business-partner/{% prompt 'BPN', '', '', '', false, true %}", + "name": "Get business partner by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [ + { + "name": "idType", + "value": "BPN", + "disabled": false + } + ], + "headers": [], + "authentication": { + "type": "oauth2", + "grantType": "client_credentials", + "accessTokenUrl": "{{ _.OAUTH2_TOKEN_URL }}", + "clientId": "{{ _.BPDM_CLIENT_ID }}", + "clientSecret": "{{ _.BPDM_CLIENT_SECRET }}" + }, + "metaSortKey": -1680682418174, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_ecf376d268ed403d85415925a9876340", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418184, + "created": 1680682418184, + "name": "Business partner data management", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418184, + "_type": "request_group" + }, + { + "_id": "req_958372128cd94531b9153539a95ff025", + "parentId": "fld_f08715e4a303459d9c66b22f0ea2fee7", + "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", + "name": "Get Esr Statistics", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418158, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_f08715e4a303459d9c66b22f0ea2fee7", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418167, + "created": 1680682418167, + "name": "ESR Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418167, + "_type": "request_group" + }, + { + "_id": "req_f9774214bb754107818e8ade02b2c664", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1702991361578, + "created": 1680682418143, + "url": "{{IRS_HOST}}/ess/bpn/investigations", + "name": "Register Job Investigation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"key\": {\n\t\t\"globalAssetId\": \"urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7\",\n\t\t\"bpn\": \"BPNL00000003CRHK\"\n\t},\n\t\"incidentBPNSs\": [\n\t\t\"BPNL00000003B6LU\"\n\t],\n\t\"bomLifecycle\": \"asPlanned\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418143, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_46d3f6585fc9478a9c2867fee821ac64", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418151, + "created": 1680682418151, + "name": "ESS Spike", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418151, + "_type": "request_group" + }, + { + "_id": "req_3d24c6fdc4fb4f6f9749236e1a7b800a", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1705942138125, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% response 'body', 'req_ec674952c1114bce8fb71ea1ed6d9ef7', 'b64::JC5pZA==::46b', 'never', 60 %}", + "name": "Get registered investigation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418138.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_aff549831f8c45c28f17b16d16a9971f", + "parentId": "fld_46d3f6585fc9478a9c2867fee821ac64", + "modified": 1702991370481, + "created": 1680682418134, + "url": "{{IRS_HOST}}/ess/bpn/investigations/{% prompt 'Job ID', '', '', '', false, true %}", + "name": "Search for investigation by jobId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418134, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_7917cf051540431aa6eb72fe167f1cd1", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1710076303275, + "created": 1680682418118, + "url": "{{IRS_HOST}}/irs/orders", + "name": "Register Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418118, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1680682418128, + "created": 1680682418128, + "name": "Batch Processing", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418128, + "_type": "request_group" + }, + { + "_id": "req_5ca464846cf14393b5dccc09eab1ff94", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991390349, + "created": 1696342619602, + "url": "{{IRS_HOST}}/irs/ess/orders", + "name": "Register ESS Batch Order", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"batchSize\": 10,\n\t\"batchStrategy\": \"PRESERVE_BATCH_JOB_ORDER\",\n\t\"incidentBPNSs\": [\"BPNL00000003B6LU\"],\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": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418113.5, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d2936baa5fc846e99b6a1fd90e76f360", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1705006936944, + "created": 1705006139836, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Cancel order job for given orderId", + "description": "", + "method": "PUT", + "body": { + "mimeType": "application/json", + "text": "{}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json", + "id": "pair_88db8badf4ea4a0d9968c769167407c8" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418111.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_ebf5ce9b4ff44918bd8c320ffb9d37aa", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991398473, + "created": 1680682418109, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}", + "name": "Search for given orderId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418109, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_15442d1e3d134b3a9d5166fdffd58e21", + "parentId": "fld_3d64394ad3d14232b6ddff8e4a6d1000", + "modified": 1702991409664, + "created": 1680682418099, + "url": "{{IRS_HOST}}/irs/orders/{% prompt 'Order ID', '', '', '', false, true %}/batches/{% prompt 'Batch ID', '', '', '', false, true %}", + "name": "Search for given orderId and batchId", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-API-KEY", + "value": "{{ _.REGULAR_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1680682418099, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_374c63a9e933495aa538c64cf0ce5e9c", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1690472186478, + "created": 1678358655308, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\"\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722939.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1690362660167, + "created": 1690362660167, + "name": "Catalog", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1690362660167, + "_type": "request_group" + }, + { + "_id": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "parentId": "fld_5de60849f6444f6f9d543051dfc1b83a", + "modified": 1690363778601, + "created": 1675675609576, + "name": "EDC-Requests", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1680682418078, + "_type": "request_group" + }, + { + "_id": "req_d1fca9b114cb4765a6cc14ed42328981", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1691500654267, + "created": 1685521485278, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with registry filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/type\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"data.core.digitalTwinRegistry\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722889.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d8228ae795f741f0a3ee41c44c731532", + "parentId": "fld_502cfa569e234dfbaf8d32e9a00a6a48", + "modified": 1705940987109, + "created": 1691654388376, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/catalog/request", + "name": "Get catalog with asset filter", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t},\n\t\"edc:providerUrl\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:querySpec\": {\n\t\t\"edc:filterExpression\": {\n\t\t\t\"edc:operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n\t\t\t\"edc:operator\": \"=\",\n\t\t\t\"edc:operandRight\": \"{% prompt 'assetId', '', '', '', false, true %}\"\n\t\t}\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1686195722789.1875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_9f6323d57e5645078c67c2634a91dedc", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691578280640, + "created": 1675675609557, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations", + "name": "Start contract negotiation", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"edc:offer\": {\n\t\t\"@type\": \"edc:ContractOfferDescription\",\n\t\t\"edc:offerId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:OGQ0ZTNkODYtOTIxOC00MjljLWI1N2EtNWZlZTZkODIzMmEx\",\n\t\t\"edc:assetId\": \"digital-twin-registry\",\n\t\t\"edc:policy\": {\n\t\t\t\"@type\": \"odrl:Set\",\n\t\t\t\"odrl:permission\": {\n\t\t\t\t\"odrl:target\": \"digital-twin-registry\",\n\t\t\t\t\"odrl:action\": {\n\t\t\t\t\t\"odrl:type\": \"USE\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"odrl:prohibition\": [],\n\t\t\t\"odrl:obligation\": [],\n\t\t\t\"odrl:target\": \"digital-twin-registry\"\n\t\t}\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:callbackAddresses\": [],\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511095, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_356464095be447bd8e7a7733cc997f28", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1684146626847, + "created": 1684146519491, + "name": "Negotiation", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1679911060327.75, + "_type": "request_group" + }, + { + "_id": "req_b3e48d06eb7e4a85813c8425a740ad25", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690362123962, + "created": 1675675609549, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}", + "name": "Get contract negotiation", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511045, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_0092fa60fd8f4596ab3d1eab70400592", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690362117725, + "created": 1685444139708, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/{% prompt 'id', '', '', '', false, true %}/cancel", + "name": "Cancel contract negotation", + "description": "", + "method": "POST", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146511020, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_33efa480448244a7b9bfcdb9e91d0aa6", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361721223, + "created": 1681911985730, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/contractnegotiations/request", + "name": "Get contract negotiations", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510995, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_4e9a65bd315a406aab742ae5abb5d15a", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691578311420, + "created": 1675675609541, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses", + "name": "Start transferprocess", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"edc:assetId\": \"digital-twin-registry\",\n\t\"edc:connectorAddress\": \"{{ _.PROVIDER_CONTROLPLANE_1 }}/api/v1/dsp\",\n\t\"edc:contractId\": \"ZGR0ci1jeG1lbWJlcnMtY29udHJhY3Q=:ZGlnaXRhbC10d2luLXJlZ2lzdHJ5:NGNlMDk0ODgtOTMzYy00ZDk3LThiNTAtNDMyZWRjMzIwM2Fm\",\n\t\"edc:dataDestination\": {\n\t\t\"edc:type\": \"HttpProxy\"\n\t},\n\t\"edc:protocol\": \"dataspace-protocol-http\",\n\t\"edc:managedResources\": false,\n\t\"edc:connectorId\": \"BPNL00000001CRHK\",\n\t\"@context\": {\n\t\t\"dct\": \"https://purl.org/dc/terms/\",\n\t\t\"tx\": \"https://w3id.org/tractusx/v0.0.1/ns/\",\n\t\t\"edc\": \"https://w3id.org/edc/v0.0.1/ns/\",\n\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\",\n\t\t\"dcat\": \"https://www.w3.org/ns/dcat/\",\n\t\t\"dspace\": \"https://w3id.org/dspace/v0.8/\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510945, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_b38860166a534a858832ae622becb8a9", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1691503370103, + "created": 1679993996270, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/{% prompt 'id', '', '', '', false, true %}", + "name": "Get transferprocess by id", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510895, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d574e6886e1d4436a2aeb9dec6c2c0bc", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361795179, + "created": 1675675609525, + "url": "{{ _.CONSUMER_CONTROLPLANE }}/management/v2/transferprocesses/request", + "name": "Get transferprocesses", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510845, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_92bacd622f69483f9798e6e8cbbe1169", + "parentId": "fld_356464095be447bd8e7a7733cc997f28", + "modified": 1690361763512, + "created": 1681910653593, + "url": "{{CONSUMER_CONTROLPLANE}}/management/v2/contractagreements/request", + "name": "Get contract agreements", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1684146510795, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_35011172f7ab4e3697591dac19fbeda3", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362947546, + "created": 1681907482278, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets", + "name": "Create Asset", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"@context\": {},\n\t\"asset\": {\n\t\t\"@id\": \"asset-id\",\n\t\t\"properties\": {\n\t\t\t\"description\": \"IRS EDC Demo Asset\"\n\t\t}\n\t},\n\t\"dataAddress\": {\n\t\t\"@type\": \"DataAddress\",\n\t\t\"type\": \"HttpData\",\n\t\t\"baseUrl\": \"http://backend-url/data/asset-id\",\n\t\t\"contentType\": \"application-json\",\n\t\t\"proxyPath\": \"false\",\n\t\t\"proxyBody\": \"false\",\n\t\t\"proxyMethod\": \"false\",\n\t\t\"proxyQueryParams\": \"false\"\n\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033461.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "fld_180cf8ac3da346639736153e59ab9852", + "parentId": "fld_e12f52232f2e4ccbb8a92a5422e24094", + "modified": 1705940929752, + "created": 1684146457388, + "name": "Provider", + "description": "", + "environment": {}, + "environmentPropertyOrder": null, + "metaSortKey": -1678852197613.5625, + "_type": "request_group" + }, + { + "_id": "req_50deb85fb48b4db49c6bec6b4919ae99", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362407763, + "created": 1685444139630, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Asset by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033452.375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_dd70aba7bf7141dbbda60a448dd13cb8", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362438115, + "created": 1685444139625, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/request", + "name": "Get all Assets", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033447.6875, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_83381a3e5e874d6fa62ddc82a4a7922e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362400081, + "created": 1685444139636, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/assets/{% prompt 'id', '', '', '', false, true %}", + "name": "Delete Asset", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033433.625, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_2bdec1164b8d4ba9b8049a1e015ce78e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362581978, + "created": 1685444139641, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions", + "name": "Create Policy", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n\t\"validUntil\": \"2025-12-12T23:59:59.999Z\",\n\t\"businessPartnerNumber\": \"BPNL00000000BJTL\",\n\t\"payload\": {\n\t\t\t\"@context\": {\n\t\t\t\t\"odrl\": \"http://www.w3.org/ns/odrl/2/\"\n\t\t\t},\n\t\t\t\"@id\": \"policy-id12\",\n\t\t\t\"policy\": {\n\t\t\t\t\"odrl:permission\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"odrl:action\": \"USE\",\n\t\t\t\t\t\t\"odrl:constraint\": {\n\t\t\t\t\t\t\t\"odrl:and\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"Membership\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"active\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"odrl:leftOperand\": \"PURPOSE\",\n\t\t\t\t\t\t\t\t\t\"odrl:operator\": {\n\t\t\t\t\t\t\t\t\t\t\"@id\": \"odrl:eq\"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"odrl:rightOperand\": \"ID 3.1 Trace\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033403.9375, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e5a34fa4eabb495b9dbc69803edcb8c5", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362549290, + "created": 1685444139647, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Policy by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033364.0937, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_3726a3d5cc8c4176949f9c1affd63967", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362591799, + "created": 1685444139653, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/request", + "name": "Get all Policies", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033344.1719, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_1fb5786a714140be9cf6e8c69a8ab3a2", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362559324, + "created": 1685444139659, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/policydefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Policy by ID", + "description": "", + "method": "DELETE", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033299.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_d3310b777935406197ee45619c6955c6", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363080444, + "created": 1685444139665, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions", + "name": "Create Contract Definitinion", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "{\n \"@context\": {\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\n },\n \"@type\": \"ContractDefinition\",\n \"accessPolicyId\": \"policy-id\",\n \"contractPolicyId\": \"policy-id\",\n \"assetsSelector\": {\n \"operandLeft\": \"https://w3id.org/edc/v0.0.1/ns/id\",\n \"operator\": \"=\",\n \"operandRight\": \"asset-id\"\n }\n}" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033261.75, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_034858006e4544b1aee573fbd1deae9e", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690362691392, + "created": 1685444139672, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Get Contract Definition by ID", + "description": "", + "method": "GET", + "body": {}, + "parameters": [], + "headers": [], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033199.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_e3d06a47af8c46dc9851be7d2f1f9a42", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363126919, + "created": 1685444139678, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/request", + "name": "Get all Contract Definitinions", + "description": "", + "method": "POST", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033174.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "req_bf171046032b4e0ea390f326c9a2f555", + "parentId": "fld_180cf8ac3da346639736153e59ab9852", + "modified": 1690363136216, + "created": 1685444139684, + "url": "{{ _.PROVIDER_CONTROLPLANE_1 }}/management/v2/contractdefinitions/{% prompt 'id', '', '', '', false, true %}", + "name": "Delte Contract Definition", + "description": "", + "method": "DELETE", + "body": { + "mimeType": "application/json", + "text": "" + }, + "parameters": [], + "headers": [ + { + "name": "Content-Type", + "value": "application/json" + } + ], + "authentication": { + "type": "apikey", + "disabled": false, + "key": "X-Api-Key", + "value": "{{ _.EDC_API_KEY }}", + "addTo": "header" + }, + "metaSortKey": -1679911033149.25, + "isPrivate": false, + "settingStoreCookies": true, + "settingSendCookies": true, + "settingDisableRenderRequestBody": false, + "settingEncodeUrl": true, + "settingRebuildPath": true, + "settingFollowRedirects": "global", + "_type": "request" + }, + { + "_id": "env_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1680782486844, + "created": 1680782486844, + "name": "Base Environment", + "data": {}, + "dataPropertyOrder": null, + "color": null, + "isPrivate": false, + "metaSortKey": 1680782486844, + "_type": "environment" + }, + { + "_id": "jar_d2b7eb1621841465ea24b73343568b286aa8ac9a", + "parentId": "wrk_565df8abe30f4da29d8bffcde97927d7", + "modified": 1712668849719, + "created": 1680782486851, + "name": "Default Jar", + "cookies": [ + { + "key": "KC_RESTART", + "expires": "1970-01-01T00:00:10.000Z", + "maxAge": 0, + "domain": "centralidp.int.demo.catena-x.net", + "path": "/auth/realms/CX-Central/", + "httpOnly": true, + "extensions": [ + "Version=1" + ], + "hostOnly": true, + "creation": "2023-04-06T13:30:18.499Z", + "lastAccessed": "2024-04-09T13:20:49.719Z", + "id": "5690562525597758" + }, + { + "key": "KC_RESTART", + "expires": "1970-01-01T00:00:10.000Z", + "maxAge": 0, + "domain": "centralidp-pen.dev.demo.catena-x.net", + "path": "/auth/realms/CX-Central/", + "httpOnly": true, + "extensions": [ + "Version=1" + ], + "hostOnly": true, + "creation": "2024-02-13T11:37:30.975Z", + "lastAccessed": "2024-02-13T11:54:54.713Z", + "id": "69183304528381" + } + ], + "_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