diff --git a/basyx/aas/model/datatypes.py b/basyx/aas/model/datatypes.py index 4705ed6a9..0d02e25f3 100644 --- a/basyx/aas/model/datatypes.py +++ b/basyx/aas/model/datatypes.py @@ -375,10 +375,10 @@ def from_string(cls, value: str) -> "NormalizedString": AnyXSDType = Union[ - Duration, DayTimeDuration, YearMonthDuration, DateTime, Date, Time, GYearMonth, GYear, GMonthDay, GMonth, GDay, - Boolean, Base64Binary, HexBinary, Float, Double, Decimal, Integer, Long, Int, Short, Byte, NonPositiveInteger, - NegativeInteger, NonNegativeInteger, PositiveInteger, UnsignedLong, UnsignedInt, UnsignedShort, UnsignedByte, - AnyURI, String, NormalizedString] + Duration, DayTimeDuration, YearMonthDuration, DateTime, DateTimeStamp, Date, Time, GYearMonth, GYear, GMonthDay, + GMonth, GDay, Boolean, Base64Binary, HexBinary, Float, Double, Decimal, Integer, Long, Int, Short, Byte, + NonPositiveInteger, NegativeInteger, NonNegativeInteger, PositiveInteger, UnsignedLong, UnsignedInt, UnsignedShort, + UnsignedByte, AnyURI, String, NormalizedString] XSD_TYPE_NAMES: Dict[Type[AnyXSDType], str] = {