Exploded Floor

<?xml version="1.0" encoding="UTF-8"?>
<exploded>
  <wall></wall>
  <door></door>
  <window></window>
  <furniture></furniture>
</exploded>

The <exploded>-element represents the whole floor with absolute coordinates. Walls and doors are only described once in this representation and are not grouped per room.

See also Rooms if you prefer a description per room.

XML SchemaCopied!

<xs:element name="exploded">
  <xs:complexType>
    <xs:sequence>
      <xs:choice maxOccurs="unbounded">
        <xs:element name="wall"/>
        <xs:element name="door"/>
        <xs:element name="window"/>
        <xs:element name="furniture"/>
      </xs:choice>
    </xs:sequence>
  </xs:complexType>
</xs:element>