We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b5bc7 commit 8948ae8Copy full SHA for 8948ae8
2 files changed
sdk/basyx/aas/adapter/_generic.py
@@ -37,7 +37,8 @@
37
ASSET_KIND: Dict[model.AssetKind, str] = {
38
model.AssetKind.TYPE: 'Type',
39
model.AssetKind.INSTANCE: 'Instance',
40
- model.AssetKind.NOT_APPLICABLE: 'NotApplicable'}
+ model.AssetKind.NOT_APPLICABLE: 'NotApplicable',
41
+ model.AssetKind.ROLE: 'Role'}
42
43
QUALIFIER_KIND: Dict[model.QualifierKind, str] = {
44
model.QualifierKind.CONCEPT_QUALIFIER: 'ConceptQualifier',
sdk/basyx/aas/model/base.py
@@ -241,6 +241,7 @@ class AssetKind(Enum):
241
TYPE = 0
242
INSTANCE = 1
243
NOT_APPLICABLE = 2
244
+ ROLE = 3
245
246
247
class QualifierKind(Enum):
0 commit comments