"dateTime" is the XML defined name of this type. The following is an example of a dateTime declaration in a schema:<xs:element name="startTime" type="xs:dateTime"/> An element in your document might look like this:<startTime>2022-05-30T09:00:00</startTime> If UTC: <startTime>2002-05-30T09:00:00Z</startTime> |