diff --git a/sdk/basyx/aas/adapter/_generic.py b/sdk/basyx/aas/adapter/_generic.py index 65d14d8d..f09b69ad 100644 --- a/sdk/basyx/aas/adapter/_generic.py +++ b/sdk/basyx/aas/adapter/_generic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2025 the Eclipse BaSyx Authors +# Copyright (c) 2026 the Eclipse BaSyx Authors # # This program and the accompanying materials are made available under the terms of the MIT License, available in # the LICENSE file of this project. @@ -37,7 +37,8 @@ ASSET_KIND: Dict[model.AssetKind, str] = { model.AssetKind.TYPE: 'Type', model.AssetKind.INSTANCE: 'Instance', - model.AssetKind.NOT_APPLICABLE: 'NotApplicable'} + model.AssetKind.NOT_APPLICABLE: 'NotApplicable', + model.AssetKind.ROLE: 'Role'} QUALIFIER_KIND: Dict[model.QualifierKind, str] = { model.QualifierKind.CONCEPT_QUALIFIER: 'ConceptQualifier', diff --git a/sdk/basyx/aas/model/base.py b/sdk/basyx/aas/model/base.py index 4113d161..6b7c18aa 100644 --- a/sdk/basyx/aas/model/base.py +++ b/sdk/basyx/aas/model/base.py @@ -241,8 +241,8 @@ class AssetKind(Enum): TYPE = 0 INSTANCE = 1 - ROLE = 2 - NOT_APPLICABLE = 3 + NOT_APPLICABLE = 2 + ROLE = 3 class QualifierKind(Enum):