You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specification says the following for basicEventElement.lastUpdate
The issue here is that the Type is dateTime which is defined as xs:dateTime, meaning it can have any timezone. However, the explanation column states that the timestamp should/must(?) be in UTC. Based on that you introduced a new "type" Date_time_UTC. I would argue that the specification is wrong or at least inconsistent as the type information is constrained by the explanation to an undefined type "dateTimeUTC". The correct way to handle this would be to change the specification to either defined the type dateTimeUTC or to remove the UTC restriction in the explanation.
Describe the bug
The regex for values of type xs:dateType
does only allow
Z
,+00:00
, or-00:00
as timezones.Correct behavior would be to allow
Z
or any other timezone of format(+|-)[0-9]{2}:[0-9]{2}
.Where
aas-specs/schemas/json/aas.json
Line 224 in 04a1f04
aas-specs/schemas/json/aas.json
Line 622 in 04a1f04
Additional context
https://www.w3.org/TR/xmlschema-2/#dateTime Section 3.2.7.3
The text was updated successfully, but these errors were encountered: