Skip to content

Commit

Permalink
Merge pull request eclipse-tractusx#491 from arnoweiss/dtkit-update-fig
Browse files Browse the repository at this point in the history
chore: reset figure to dark theme
  • Loading branch information
danielmiehle authored Nov 28, 2023
2 parents 76e3244 + 2124a4e commit d5c6e0f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,13 +423,25 @@ these are the layers of complexity:
| AAS Specification | 4, 5, 15, 25 | For all AAS-related EDC-Assets (styled as dcat:Dataset in the catalog), a property cx-common:version must be added referring to the major and minor version of the AAS-spec. | Unclear, under discussion in DT Kit. |
| Data Model Version | 5, 21, 29 | The structure of the Submodel is determined by the aspect-model's URN. It includes a section on versioning. | A new version of the schema requires setup of a new submodel. This includes registration at the DTR. |

### Patterns for Submodels
Here's a list of duties for Data Providers in case they integrate a new Submodel (or version of an existing one) to an existing
twin:

- Expose a new Submodel to the Dataspace. If its URL is a subpath of one that's already registered as a EDC-Asset,
there is no need to specifically register it as a new EDC-Asset and create a Contract Definition for it. However,
if there is no such EDC-Asset, that's what a Data Provider must do: create an Asset, connect it to policies via the contract-
definition-API and let consumers negotiate for it.
- If only assetIds are known, the aasId can be discovered via `GET https://mydtr.com/api/v3.0/lookup/shells?assetIds=...` as specified
by CX-0002.
- `POST https://mydtr.com/api/v3.0/shell-descriptors/{{aasId}}/submodel-descriptors` with the (known or obtained) aasId in the path
and the new submodel-descriptor in the body of the request. The attribute `semanticId` is mandatory for submodel-descriptors in Catena-X.
As defined in CX-0002, semanticIds in Catena-X are aspect-model-urns (see CX-0003) including a version.

### Patterns for Submodel Deployment

Data Providers will usually follow one of two patterns:
1. Digital Twin Repository: Deploying a dedicated Repository for the persistence of digital twins and related data is the most
convenient way to get started with the AAS. Due to the risk of data duplication and unclear initial ingestion
mechanisms,
it may not scale to industrial sizes.
mechanisms, it may not scale to industrial sizes.
2. Delegation: Wrapping another API or a database may deploy the Submodel API as a new facade. It delegates the incoming
requests to the respective backend systems. This is particularly feasible in the Catena-X dataspace since it

Expand All @@ -444,4 +456,4 @@ see [reference implementation](https://github.com/eclipse-tractusx/sldt-digital-
These APIs should only be accessible by the Data Provider (for instance by introduction of proper access control scopes
or setting `proxyMethod = false`, see [registration](#digital-twin-registry-as-edc-data-asset)). Delegation
as backend integration pattern is more inconvenient as the DTR must process and return reproducable IDs not only for
the assets but also for the AAS - this is hard to realize in a pure stateless implementation.
the assets but also for the AAS - this is hard to realize in a pure stateless implementation.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions docs-kits/kits/Digital Twin Kit/page_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ sidebar_position: 1

All notable changes to this Kit will be documented in this file.

## [1.1.0] - 2023-12-05

### Added

- remarks on versioning
- guidance for adding submodels to existing twins

### Changed

- A couple of clarifications and bugfixes for R23-12
- Version of Kit incremented as minor revision since no breaking changes occurred.


## [1.0.0] - 2023-08-17

### Added
Expand Down

0 comments on commit d5c6e0f

Please sign in to comment.