fix: align ServiceSpecificationProfileEnum with IDTA-01002 v3.1.2 spec#541
Merged
Merged
Conversation
- Fix SUBMODEL_READ/SUBMODEL_VALUE names (were swapped: SSP-002=Read, SSP-003=Value) - Rename AAS_REPOSITORY_BULK -> AAS_REPOSITORY_QUERY (SSP-003 is Query, no Bulk exists) - Rename SUBMODEL_REPOSITORY_BULK -> SUBMODEL_REPOSITORY_TEMPLATE (SSP-003 is Template) - Rename CONCEPT_DESCRIPTION_REPOSITORY_READ -> CONCEPT_DESCRIPTION_REPOSITORY_QUERY (SSP-002) - Remove CONCEPT_DESCRIPTION_REPOSITORY_BULK (SSP-003 does not exist in spec) - Add AAS_REGISTRY_QUERY (SSP-004), AAS_REGISTRY_MINIMAL_READ (SSP-005) - Add SUBMODEL_REGISTRY_QUERY (SSP-004) - Add SUBMODEL_REPOSITORY_TEMPLATE_READ (SSP-004), SUBMODEL_REPOSITORY_QUERY (SSP-005)
s-heppner
approved these changes
May 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Corrects
ServiceSpecificationProfileEnumto match the IDTA-01002 v3.1.2 specification exactly.Reference: https://industrialdigitaltwin.io/aas-specifications/IDTA-01002/v3.1.2/http-rest-api/service-specifications-and-profiles.html
Bugs fixed (wrong name↔SSP mapping)
SUBMODEL_VALUESUBMODEL_READSUBMODEL_READSUBMODEL_VALUEAAS_REPOSITORY_BULKAAS_REPOSITORY_QUERY(no Bulk profile exists for AAS Repository)SUBMODEL_REPOSITORY_BULKSUBMODEL_REPOSITORY_TEMPLATECONCEPT_DESCRIPTION_REPOSITORY_READCONCEPT_DESCRIPTION_REPOSITORY_QUERYRemoved (does not exist in spec)
CONCEPT_DESCRIPTION_REPOSITORY_BULK— Concept Description Repository has no SSP-003Added (missing from spec)
AAS_REGISTRY_QUERYAAS_REGISTRY_MINIMAL_READSUBMODEL_REGISTRY_QUERYSUBMODEL_REPOSITORY_TEMPLATE_READSUBMODEL_REPOSITORY_QUERYBreaking changes
Renames existing enum members. Any code referencing
SUBMODEL_VALUE,SUBMODEL_READ,AAS_REPOSITORY_BULK,SUBMODEL_REPOSITORY_BULK,CONCEPT_DESCRIPTION_REPOSITORY_READ, orCONCEPT_DESCRIPTION_REPOSITORY_BULKby name will need updating. No usages of the renamed/removed members were found in this repository.