Skip to content

Commit

Permalink
Merge pull request #886 from Cofinity-X/chore/TRX-30-sync-upstream
Browse files Browse the repository at this point in the history
chore: [TRX-30] removing subjectId since it is not existing in dtr. (…
  • Loading branch information
ds-mwesener authored Oct 15, 2024
2 parents 5791722 + 7b7ea60 commit 1ac6c94
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ _**For better traceability add the corresponding GitHub issue number in each cha

- Added the discovery type configurable, with a default value of bpnl in (ConnectorEndpointsService) (#12)

### Removed
- Removed subjectId from AssetAdministrationShellDescriptor object

## [5.4.1] - 2024-08-19

### Fixed
Expand Down
2 changes: 0 additions & 2 deletions docs/src/api/irs-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2232,8 +2232,6 @@ components:
example: engineserialid
semanticId:
$ref: '#/components/schemas/Reference'
subjectId:
$ref: '#/components/schemas/Reference'
value:
type: string
example: "12309481209312"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ public class IdentifierKeyValuePair {
*/
@Schema(implementation = String.class, example = "engineserialid")
private String name;
/**
* subjectId
*/
private Reference subjectId;

/**
* externalSubjectId
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,6 @@ private AssetAdministrationShellDescriptor testShell() {
.specificAssetIds(List.of(IdentifierKeyValuePair.builder()
.name("manufacturerId")
.value("BPNL00000003CNKC")
.subjectId(
Reference.builder()
.keys(List.of(
SemanticId.builder()
.type("GlobalReference")
.value("PUBLIC_READABLE")
.build()))
.build())
.build()))
.submodelDescriptors(List.of(SubmodelDescriptor.builder()
.idShort(
Expand Down

0 comments on commit 1ac6c94

Please sign in to comment.