Environment🔗
Container for the sets of different identifiables.
Environment is not an identifiable or referable element. It is introduced
to enable file transfer as well as serialization.
Properties 🔗
- assetAdministrationShells: Optional[List[AssetAdministrationShell]] 🔗
-
Asset Administration Shell
- submodels: Optional[List[Submodel]] 🔗
-
Submodel
- conceptDescriptions: Optional[List[ConceptDescription]] 🔗
-
Concept description
Invariants 🔗
-
Concept descriptions must be either not set or have at least one item.
not (self.conceptDescriptions is not None) or (len(self.conceptDescriptions) >= 1)
-
Submodels must be either not set or have at least one item.
-
Asset administration shells must be either not set or have at least one item.
not (self.assetAdministrationShells is not None) or (len(self.assetAdministrationShells) >= 1)