<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
  <xs:attribute name="id" type="xs:ID"/>
  <xs:attribute name="path" type="xs:string"/>
  <xs:attribute name="ident" type="xs:string"/>
  <xs:element name="dmtypes" type="dmtypesElemType"/>
  <xs:complextype name="dmtypesElemType">
    <xs:attribute ref="id"/>
    <xs:attribute ref="path" use="required"/>
  </xs:complextype>
  <xs:element name="default" type="defaultElemType"/>
  <xs:complextype name="defaultElemType">
    <xs:attribute ref="id"/>
    <xs:attribute ref="path" use="required"/>
    <xs:attribute ref="ident" use="required"/>
  </xs:complextype>
  <xs:element name="brexMap" type="brexMapElemType"/>
  <xs:complextype name="brexMapElemType">
    <xs:sequence>
      <xs:element ref="dmtypes" minoccurs="0"/>
      <xs:element ref="default" minoccurs="0" maxoccurs="unbounded"/>
    </xs:sequence>
  </xs:complextype>
</xs:schema>