SequenceOfBACnetDeviceObjectReference

<< Clique para Mostrar o Sumário >>

 

SequenceOfBACnetDeviceObjectReference

Esta representação de dados complexos via XML é utilizada pelos seguintes objetos/propriedades:

accessDoor.doorMembers

accessPoint.accessDoors

accessUser.credentials

accessUser.memberOf

accessUser.members

accessZone.credentialsInZone

accessZone.entryPoints

accessZone.exitPoints

lifeSafetyPoint.memberOf

lifeSafetyZone.memberOf

lifeSafetyZone.zoneMembers

structuredView.subordinateList

Esquema XML

<?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="SequenceOfBACnetDeviceObjectReference">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="BACnetDeviceObjectReference" type="BACnetDeviceObjectReference" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="Value" type="SequenceOfBACnetDeviceObjectReference" />
</xs:schema>

Exemplos

Exemplo 1:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <SequenceOfBACnetDeviceObjectReference />
</Value>

Exemplo 2:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <SequenceOfBACnetDeviceObjectReference>
    <BACnetDeviceObjectReference>
      <DeviceIdentifier>device-501</DeviceIdentifier>
      <ObjectIdentifier>device-502</ObjectIdentifier>
    </BACnetDeviceObjectReference>
    <BACnetDeviceObjectReference>
      <DeviceIdentifier>device-503</DeviceIdentifier>
      <ObjectIdentifier>device-504</ObjectIdentifier>
    </BACnetDeviceObjectReference>
    <BACnetDeviceObjectReference>
      <DeviceIdentifier>device-505</DeviceIdentifier>
      <ObjectIdentifier>device-506</ObjectIdentifier>
    </BACnetDeviceObjectReference>
  </SequenceOfBACnetDeviceObjectReference>
</Value>

Esta página foi útil?