<< Click to Display Table of Contents >>
BACnetTimeStamp |
This XML representation of complex data is used by the following objects/properties:
•alertEnrollment.eventTimeStamps
•analogOutput.commandTimeArray
•binaryLightingOutput.commandTimeArray
•binaryLightingOutput.eventTimeStamps
•binaryLightingOutput.lastCommandTime
•binaryOutput.commandTimeArray
•bitstringValue.commandTimeArray
•bitstringValue.eventTimeStamps
•bitstringValue.lastCommandTime
•characterstringValue.commandTimeArray
•characterstringValue.eventTimeStamps
•characterstringValue.lastCommandTime
•credentialDataInput.eventTimeStamps
•credentialDataInput.updateTime
•datepatternValue.commandTimeArray
•datepatternValue.eventTimeStamps
•datepatternValue.lastCommandTime
•datetimeValue.commandTimeArray
•datetimeValue.eventTimeStamps
•datetimeValue.lastCommandTime
•datetimepatternValue.commandTimeArray
•datetimepatternValue.eventTimeStamps
•datetimepatternValue.lastCommandTime
•eventEnrollment.eventTimeStamps
•integerValue.commandTimeArray
•largeAnalogValue.commandTimeArray
•largeAnalogValue.eventTimeStamps
•largeAnalogValue.lastCommandTime
•lifeSafetyPoint.eventTimeStamps
•lifeSafetyZone.eventTimeStamps
•lightingOutput.commandTimeArray
•lightingOutput.lastCommandTime
•multiStateInput.eventTimeStamps
•multiStateOutput.commandTimeArray
•multiStateOutput.eventTimeStamps
•multiStateOutput.lastCommandTime
•multiStateValue.commandTimeArray
•multiStateValue.eventTimeStamps
•multiStateValue.lastCommandTime
•notificationClass.eventTimeStamps
•octetstringValue.commandTimeArray
•octetstringValue.lastCommandTime
•positiveIntegerValue.commandTimeArray
•positiveIntegerValue.eventTimeStamps
•positiveIntegerValue.lastCommandTime
•pulseConverter.eventTimeStamps
•timepatternValue.commandTimeArray
•timepatternValue.eventTimeStamps
•timepatternValue.lastCommandTime
•trendLogMultiple.eventTimeStamps
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.elipse.com.br/drivers/BACnet" xmlns:mstns="http://www.elipse.com.br/drivers/BACnet" elementFormDefault="qualified" targetNamespace="http://www.elipse.com.br/drivers/BACnet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="BACnetTimeStamp">
<xs:sequence>
<xs:choice>
<xs:element name="Time" type="Time" />
<xs:element name="SequenceNumber" type="Unsigned" />
<xs:element name="Datetime" type="BACnetDateTime" />
</xs:choice>
</xs:sequence>
</xs:complexType>
<xs:element name="Value" type="BACnetTimeStamp" />
</xs:schema>
Example 1:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<BACnetTimeStamp>
<Time>22:39:15.980</Time>
</BACnetTimeStamp>
</Value>
Example 2:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<BACnetTimeStamp>
<SequenceNumber>1235</SequenceNumber>
</BACnetTimeStamp>
</Value>
Example 3:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<BACnetTimeStamp>
<Datetime>
<Date>2019-12-20</Date>
<Time>22:39:15.980</Time>
</Datetime>
</BACnetTimeStamp>
</Value>