Changes between Initial Version and Version 1 of NodesDatabase/Schema/GuifiNet


Ignore:
Timestamp:
01/05/10 23:01:15 (15 years ago)
Author:
mitar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified NodesDatabase/Schema/GuifiNet

    v1 v1  
     1= guifi.net Database = 
     2 
     3Our data is accessible in XML (we call it CNML as for Communities Network Markup Language) using the CNML link provided at the bottom page of each zone. As en example, for [http://guifi.net/en/planavic a zone of about 1400 nodes] at the bottom the CNML link drives you [http://guifi.net/en/guifi/cnml/8349 here], where you can export all the information at several levels of depth. 
     4 
     5We're now just delivering the XML. By looking into this it is possible to see very much which objects are described and with which attributes. To help documenting it, we can use [http://www.hitsw.com/xml_utilities/ some tools] looking at a valid XML code. With that, you can currently get the XML schema and DTD provided below. 
     6 
     7By looking into this you see that there is an object hierarchy which might be very much general, basic and a summary: network → zones → child zones (up to n) → locations → devices → radios → interfaces → links. 
     8 
     9== CNML generated DTD == 
     10 
     11{{{ 
     12<!ELEMENT class EMPTY> 
     13<!ATTLIST class mapping NMTOKEN #REQUIRED> 
     14<!ATTLIST class network_description NMTOKEN #REQUIRED> 
     15 
     16<!ELEMENT cnml ( class, network )> 
     17<!ATTLIST cnml generated CDATA #REQUIRED> 
     18<!ATTLIST cnml server_id NMTOKEN #REQUIRED> 
     19<!ATTLIST cnml server_url CDATA #REQUIRED> 
     20<!ATTLIST cnml version NMTOKEN #REQUIRED> 
     21 
     22<!ELEMENT device ( #PCDATA | interface | radio | service )*> 
     23<!ATTLIST device created CDATA #REQUIRED> 
     24<!ATTLIST device firmware CDATA #IMPLIED> 
     25<!ATTLIST device graph_server NMTOKEN #IMPLIED> 
     26<!ATTLIST device id NMTOKEN #REQUIRED> 
     27<!ATTLIST device name CDATA #IMPLIED> 
     28<!ATTLIST device snmp_index ( 2 | 3 | 4 | 5 | 9 | v ) #IMPLIED> 
     29<!ATTLIST device status ( Building | Dropped | Planned | Reserved | Testing | Working ) #REQUIRED> 
     30<!ATTLIST device title ID #REQUIRED> 
     31<!ATTLIST device type ( ADSL | cam | generic | nat | phone | radio | server ) #REQUIRED> 
     32<!ATTLIST device updated CDATA #IMPLIED> 
     33 
     34<!ELEMENT interface ( link* )> 
     35<!ATTLIST interface id NMTOKEN #REQUIRED> 
     36<!ATTLIST interface ipv4 NMTOKEN #IMPLIED> 
     37<!ATTLIST interface mac NMTOKEN #IMPLIED> 
     38<!ATTLIST interface mask ( 255.255.255.0 | 255.255.255.192 | 255.255.255.224 | 255.255.255.240 | 255.255.255.248 | 255.255.255.252 ) #REQUIRED> 
     39<!ATTLIST interface type CDATA #REQUIRED> 
     40 
     41<!ELEMENT link EMPTY> 
     42<!ATTLIST link id NMTOKEN #REQUIRED> 
     43<!ATTLIST link link_status ( Building | Planned | Reserved | Testing | Working ) #REQUIRED> 
     44<!ATTLIST link link_type CDATA #REQUIRED> 
     45<!ATTLIST link linked_device_id NMTOKEN #REQUIRED> 
     46<!ATTLIST link linked_interface_id NMTOKEN #REQUIRED> 
     47<!ATTLIST link linked_node_id NMTOKEN #REQUIRED> 
     48 
     49<!ELEMENT network ( zone )> 
     50<!ATTLIST network ap NMTOKEN #REQUIRED> 
     51<!ATTLIST network client NMTOKEN #REQUIRED> 
     52<!ATTLIST network devices NMTOKEN #REQUIRED> 
     53<!ATTLIST network links NMTOKEN #REQUIRED> 
     54<!ATTLIST network nodes NMTOKEN #REQUIRED> 
     55<!ATTLIST network services NMTOKEN #REQUIRED> 
     56 
     57<!ELEMENT node ( #PCDATA | device )*> 
     58<!ATTLIST node access_points NMTOKEN #IMPLIED> 
     59<!ATTLIST node antenna_elevation NMTOKEN #IMPLIED> 
     60<!ATTLIST node clients ( 1 | 2 | 3 | 4 ) #IMPLIED> 
     61<!ATTLIST node created CDATA #REQUIRED> 
     62<!ATTLIST node devices ( 1 | 10 | 2 | 3 | 4 | 5 | 6 | 7 | 8 ) #IMPLIED> 
     63<!ATTLIST node graph_server ( 11747 | 15618 | 6558 | 6572 | 6673 | 6833 | 6836 | 8444 ) #IMPLIED> 
     64<!ATTLIST node id NMTOKEN #REQUIRED> 
     65<!ATTLIST node lat NMTOKEN #REQUIRED> 
     66<!ATTLIST node links NMTOKEN #IMPLIED> 
     67<!ATTLIST node lon NMTOKEN #REQUIRED> 
     68<!ATTLIST node services NMTOKEN #IMPLIED> 
     69<!ATTLIST node status ( Building | Planned | Reserved | Testing | Working ) #REQUIRED> 
     70<!ATTLIST node title ID #REQUIRED> 
     71<!ATTLIST node updated CDATA #IMPLIED> 
     72 
     73<!ELEMENT radio ( interface* )> 
     74<!ATTLIST radio antenna_angle ( 120 | 30 | 360 | 6 | 60 | 90 ) #IMPLIED> 
     75<!ATTLIST radio antenna_azimuth NMTOKEN #IMPLIED> 
     76<!ATTLIST radio antenna_gain ( 12 | 14 | 18 | 2 | 21 | 24 | 8 ) #IMPLIED> 
     77<!ATTLIST radio channel NMTOKEN #IMPLIED> 
     78<!ATTLIST radio device_id NMTOKEN #REQUIRED> 
     79<!ATTLIST radio id NMTOKEN #REQUIRED> 
     80<!ATTLIST radio mode ( ap | client ) #REQUIRED> 
     81<!ATTLIST radio protocol ( 802.11a | 802.11b | 802.11g | legacy ) #IMPLIED> 
     82<!ATTLIST radio snmp_index ( 6 ) #IMPLIED> 
     83<!ATTLIST radio snmp_name ( wifi0 | wlan1 | wlan2 | wlan3 | wlan4 | wlan5 | wlan6 | wlan7 | wlan8 ) #IMPLIED> 
     84<!ATTLIST radio ssid NMTOKEN #IMPLIED> 
     85 
     86<!ELEMENT service EMPTY> 
     87<!ATTLIST service created CDATA #REQUIRED> 
     88<!ATTLIST service id NMTOKEN #REQUIRED> 
     89<!ATTLIST service status ( Building | Planned | Testing | Working ) #REQUIRED> 
     90<!ATTLIST service title ID #REQUIRED> 
     91<!ATTLIST service type NMTOKEN #REQUIRED> 
     92<!ATTLIST service updated CDATA #IMPLIED> 
     93 
     94<!ELEMENT zone ( #PCDATA | node | zone )*> 
     95<!ATTLIST zone access_points NMTOKEN #REQUIRED> 
     96<!ATTLIST zone box CDATA #REQUIRED> 
     97<!ATTLIST zone clients NMTOKEN #REQUIRED> 
     98<!ATTLIST zone created CDATA #REQUIRED> 
     99<!ATTLIST zone devices NMTOKEN #IMPLIED> 
     100<!ATTLIST zone dns_servers CDATA #IMPLIED> 
     101<!ATTLIST zone graph_server NMTOKEN #IMPLIED> 
     102<!ATTLIST zone id NMTOKEN #REQUIRED> 
     103<!ATTLIST zone links NMTOKEN #REQUIRED> 
     104<!ATTLIST zone ntp_servers CDATA #IMPLIED> 
     105<!ATTLIST zone parent_id ( 15231 | 2444 | 8349 ) #REQUIRED> 
     106<!ATTLIST zone services NMTOKEN #IMPLIED> 
     107<!ATTLIST zone time_zone CDATA #FIXED "+01 2 2"> 
     108<!ATTLIST zone title CDATA #REQUIRED> 
     109<!ATTLIST zone updated CDATA #REQUIRED> 
     110<!ATTLIST zone zone_nodes NMTOKEN #REQUIRED> 
     111}}} 
     112 
     113== CNML generated schema == 
     114 
     115{{{ 
     116<?xml version="1.0" encoding="UTF-8" ?> 
     117 
     118<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
     119  <xs:element name="class"> 
     120    <xs:complexType> 
     121      <xs:attribute name="network_description" type="xs:NMTOKEN" use="required" /> 
     122      <xs:attribute name="mapping" type="xs:NMTOKEN" use="required" /> 
     123    </xs:complexType> 
     124  </xs:element> 
     125 
     126  <xs:element name="cnml"> 
     127    <xs:complexType> 
     128      <xs:sequence> 
     129        <xs:element ref="class" /> 
     130        <xs:element ref="network" /> 
     131      </xs:sequence> 
     132      <xs:attribute name="version" type="xs:NMTOKEN" use="required" /> 
     133      <xs:attribute name="generated" type="xs:string" use="required" /> 
     134      <xs:attribute name="server_url" type="xs:string" use="required" /> 
     135      <xs:attribute name="server_id" type="xs:NMTOKEN" use="required" /> 
     136    </xs:complexType> 
     137  </xs:element> 
     138 
     139  <xs:element name="device"> 
     140    <xs:complexType mixed="true"> 
     141      <xs:choice> 
     142        <xs:element ref="interface" /> 
     143        <xs:element ref="radio" /> 
     144        <xs:element ref="service" /> 
     145      </xs:choice> 
     146      <xs:attribute name="firmware" type="xs:string" use="optional" /> 
     147      <xs:attribute name="name" type="xs:string" use="optional" /> 
     148      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     149      <xs:attribute name="created" type="xs:string" use="required" /> 
     150      <xs:attribute name="status" use="required"> 
     151        <xs:simpleType> 
     152          <xs:restriction base="xs:NMTOKEN"> 
     153            <xs:enumeration value="Building" /> 
     154            <xs:enumeration value="Dropped" /> 
     155            <xs:enumeration value="Planned" /> 
     156            <xs:enumeration value="Reserved" /> 
     157            <xs:enumeration value="Testing" /> 
     158            <xs:enumeration value="Working" /> 
     159          </xs:restriction> 
     160        </xs:simpleType> 
     161      </xs:attribute> 
     162      <xs:attribute name="updated" type="xs:string" use="optional" /> 
     163      <xs:attribute name="snmp_index" use="optional"> 
     164        <xs:simpleType> 
     165          <xs:restriction base="xs:NMTOKEN"> 
     166            <xs:enumeration value="2" /> 
     167            <xs:enumeration value="3" /> 
     168            <xs:enumeration value="4" /> 
     169            <xs:enumeration value="5" /> 
     170            <xs:enumeration value="9" /> 
     171            <xs:enumeration value="v" /> 
     172          </xs:restriction> 
     173        </xs:simpleType> 
     174      </xs:attribute> 
     175      <xs:attribute name="type" use="required"> 
     176        <xs:simpleType> 
     177          <xs:restriction base="xs:NMTOKEN"> 
     178            <xs:enumeration value="ADSL" /> 
     179            <xs:enumeration value="cam" /> 
     180            <xs:enumeration value="generic" /> 
     181            <xs:enumeration value="nat" /> 
     182            <xs:enumeration value="phone" /> 
     183            <xs:enumeration value="radio" /> 
     184            <xs:enumeration value="server" /> 
     185          </xs:restriction> 
     186        </xs:simpleType> 
     187      </xs:attribute> 
     188      <xs:attribute name="graph_server" type="xs:NMTOKEN" use="optional" /> 
     189      <xs:attribute name="title" type="xs:ID" use="required" /> 
     190    </xs:complexType> 
     191  </xs:element> 
     192 
     193  <xs:element name="interface"> 
     194    <xs:complexType> 
     195      <xs:sequence> 
     196        <xs:element ref="link" minOccurs="0" maxOccurs="unbounded" /> 
     197      </xs:sequence> 
     198      <xs:attribute name="mask" use="required"> 
     199        <xs:simpleType> 
     200          <xs:restriction base="xs:NMTOKEN"> 
     201            <xs:enumeration value="255.255.255.0" /> 
     202            <xs:enumeration value="255.255.255.192" /> 
     203            <xs:enumeration value="255.255.255.224" /> 
     204            <xs:enumeration value="255.255.255.240" /> 
     205            <xs:enumeration value="255.255.255.248" /> 
     206            <xs:enumeration value="255.255.255.252" /> 
     207          </xs:restriction> 
     208        </xs:simpleType> 
     209      </xs:attribute> 
     210      <xs:attribute name="ipv4" type="xs:NMTOKEN" use="optional" /> 
     211      <xs:attribute name="type" type="xs:string" use="required" /> 
     212      <xs:attribute name="mac" type="xs:NMTOKEN" use="optional" /> 
     213      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     214    </xs:complexType> 
     215  </xs:element> 
     216 
     217  <xs:element name="link"> 
     218    <xs:complexType> 
     219      <xs:attribute name="linked_device_id" type="xs:NMTOKEN" use="required" /> 
     220      <xs:attribute name="link_status" use="required"> 
     221        <xs:simpleType> 
     222          <xs:restriction base="xs:NMTOKEN"> 
     223            <xs:enumeration value="Building" /> 
     224            <xs:enumeration value="Planned" /> 
     225            <xs:enumeration value="Reserved" /> 
     226            <xs:enumeration value="Testing" /> 
     227            <xs:enumeration value="Working" /> 
     228          </xs:restriction> 
     229        </xs:simpleType> 
     230      </xs:attribute> 
     231      <xs:attribute name="linked_interface_id" type="xs:NMTOKEN" use="required" /> 
     232      <xs:attribute name="link_type" type="xs:string" use="required" /> 
     233      <xs:attribute name="linked_node_id" type="xs:NMTOKEN" use="required" /> 
     234      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     235    </xs:complexType> 
     236  </xs:element> 
     237 
     238  <xs:element name="network"> 
     239    <xs:complexType> 
     240      <xs:sequence> 
     241        <xs:element ref="zone" /> 
     242      </xs:sequence> 
     243      <xs:attribute name="client" type="xs:NMTOKEN" use="required" /> 
     244      <xs:attribute name="nodes" type="xs:NMTOKEN" use="required" /> 
     245      <xs:attribute name="links" type="xs:NMTOKEN" use="required" /> 
     246      <xs:attribute name="devices" type="xs:NMTOKEN" use="required" /> 
     247      <xs:attribute name="services" type="xs:NMTOKEN" use="required" /> 
     248      <xs:attribute name="ap" type="xs:NMTOKEN" use="required" /> 
     249    </xs:complexType> 
     250  </xs:element> 
     251 
     252  <xs:element name="node"> 
     253    <xs:complexType mixed="true"> 
     254      <xs:choice> 
     255        <xs:element ref="device" /> 
     256      </xs:choice> 
     257      <xs:attribute name="lon" type="xs:NMTOKEN" use="required" /> 
     258      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     259      <xs:attribute name="antenna_elevation" type="xs:NMTOKEN" use="optional" /> 
     260      <xs:attribute name="created" type="xs:string" use="required" /> 
     261      <xs:attribute name="status" use="required"> 
     262        <xs:simpleType> 
     263          <xs:restriction base="xs:NMTOKEN"> 
     264            <xs:enumeration value="Building" /> 
     265            <xs:enumeration value="Planned" /> 
     266            <xs:enumeration value="Reserved" /> 
     267            <xs:enumeration value="Testing" /> 
     268            <xs:enumeration value="Working" /> 
     269          </xs:restriction> 
     270        </xs:simpleType> 
     271      </xs:attribute> 
     272      <xs:attribute name="updated" type="xs:string" use="optional" /> 
     273      <xs:attribute name="access_points" type="xs:NMTOKEN" use="optional" /> 
     274      <xs:attribute name="lat" type="xs:NMTOKEN" use="required" /> 
     275      <xs:attribute name="graph_server" use="optional"> 
     276        <xs:simpleType> 
     277          <xs:restriction base="xs:NMTOKEN"> 
     278            <xs:enumeration value="11747" /> 
     279            <xs:enumeration value="15618" /> 
     280            <xs:enumeration value="6558" /> 
     281            <xs:enumeration value="6572" /> 
     282            <xs:enumeration value="6673" /> 
     283            <xs:enumeration value="6833" /> 
     284            <xs:enumeration value="6836" /> 
     285            <xs:enumeration value="8444" /> 
     286          </xs:restriction> 
     287        </xs:simpleType> 
     288      </xs:attribute> 
     289      <xs:attribute name="title" type="xs:ID" use="required" /> 
     290      <xs:attribute name="services" type="xs:NMTOKEN" use="optional" /> 
     291      <xs:attribute name="links" type="xs:NMTOKEN" use="optional" /> 
     292      <xs:attribute name="devices" use="optional"> 
     293        <xs:simpleType> 
     294          <xs:restriction base="xs:NMTOKEN"> 
     295            <xs:enumeration value="1" /> 
     296            <xs:enumeration value="10" /> 
     297            <xs:enumeration value="2" /> 
     298            <xs:enumeration value="3" /> 
     299            <xs:enumeration value="4" /> 
     300            <xs:enumeration value="5" /> 
     301            <xs:enumeration value="6" /> 
     302            <xs:enumeration value="7" /> 
     303            <xs:enumeration value="8" /> 
     304          </xs:restriction> 
     305        </xs:simpleType> 
     306      </xs:attribute> 
     307      <xs:attribute name="clients" use="optional"> 
     308        <xs:simpleType> 
     309          <xs:restriction base="xs:NMTOKEN"> 
     310            <xs:enumeration value="1" /> 
     311            <xs:enumeration value="2" /> 
     312            <xs:enumeration value="3" /> 
     313            <xs:enumeration value="4" /> 
     314          </xs:restriction> 
     315        </xs:simpleType> 
     316      </xs:attribute> 
     317    </xs:complexType> 
     318  </xs:element> 
     319 
     320  <xs:element name="radio"> 
     321    <xs:complexType> 
     322      <xs:sequence> 
     323        <xs:element ref="interface" minOccurs="0" maxOccurs="unbounded" /> 
     324      </xs:sequence> 
     325      <xs:attribute name="antenna_azimuth" type="xs:NMTOKEN" use="optional" /> 
     326      <xs:attribute name="ssid" type="xs:NMTOKEN" use="optional" /> 
     327      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     328      <xs:attribute name="device_id" type="xs:NMTOKEN" use="required" /> 
     329      <xs:attribute name="snmp_name" use="optional"> 
     330        <xs:simpleType> 
     331          <xs:restriction base="xs:NMTOKEN"> 
     332            <xs:enumeration value="wifi0" /> 
     333            <xs:enumeration value="wlan1" /> 
     334            <xs:enumeration value="wlan2" /> 
     335            <xs:enumeration value="wlan3" /> 
     336            <xs:enumeration value="wlan4" /> 
     337            <xs:enumeration value="wlan5" /> 
     338            <xs:enumeration value="wlan6" /> 
     339            <xs:enumeration value="wlan7" /> 
     340            <xs:enumeration value="wlan8" /> 
     341          </xs:restriction> 
     342        </xs:simpleType> 
     343      </xs:attribute> 
     344      <xs:attribute name="antenna_angle" use="optional"> 
     345        <xs:simpleType> 
     346          <xs:restriction base="xs:NMTOKEN"> 
     347            <xs:enumeration value="120" /> 
     348            <xs:enumeration value="30" /> 
     349            <xs:enumeration value="360" /> 
     350            <xs:enumeration value="6" /> 
     351            <xs:enumeration value="60" /> 
     352            <xs:enumeration value="90" /> 
     353          </xs:restriction> 
     354        </xs:simpleType> 
     355      </xs:attribute> 
     356      <xs:attribute name="mode" use="required"> 
     357        <xs:simpleType> 
     358          <xs:restriction base="xs:NMTOKEN"> 
     359            <xs:enumeration value="ap" /> 
     360            <xs:enumeration value="client" /> 
     361          </xs:restriction> 
     362        </xs:simpleType> 
     363      </xs:attribute> 
     364      <xs:attribute name="snmp_index" use="optional"> 
     365        <xs:simpleType> 
     366          <xs:restriction base="xs:NMTOKEN"> 
     367            <xs:enumeration value="6" /> 
     368          </xs:restriction> 
     369        </xs:simpleType> 
     370      </xs:attribute> 
     371      <xs:attribute name="channel" type="xs:NMTOKEN" use="optional" /> 
     372      <xs:attribute name="antenna_gain" use="optional"> 
     373        <xs:simpleType> 
     374          <xs:restriction base="xs:NMTOKEN"> 
     375            <xs:enumeration value="12" /> 
     376            <xs:enumeration value="14" /> 
     377            <xs:enumeration value="18" /> 
     378            <xs:enumeration value="2" /> 
     379            <xs:enumeration value="21" /> 
     380            <xs:enumeration value="24" /> 
     381            <xs:enumeration value="8" /> 
     382          </xs:restriction> 
     383        </xs:simpleType> 
     384      </xs:attribute> 
     385      <xs:attribute name="protocol" use="optional"> 
     386        <xs:simpleType> 
     387          <xs:restriction base="xs:NMTOKEN"> 
     388            <xs:enumeration value="802.11a" /> 
     389            <xs:enumeration value="802.11b" /> 
     390            <xs:enumeration value="802.11g" /> 
     391            <xs:enumeration value="legacy" /> 
     392          </xs:restriction> 
     393        </xs:simpleType> 
     394      </xs:attribute> 
     395    </xs:complexType> 
     396  </xs:element> 
     397 
     398  <xs:element name="service"> 
     399    <xs:complexType> 
     400      <xs:attribute name="updated" type="xs:string" use="optional" /> 
     401      <xs:attribute name="status" use="required"> 
     402        <xs:simpleType> 
     403          <xs:restriction base="xs:NMTOKEN"> 
     404            <xs:enumeration value="Building" /> 
     405            <xs:enumeration value="Planned" /> 
     406            <xs:enumeration value="Testing" /> 
     407            <xs:enumeration value="Working" /> 
     408          </xs:restriction> 
     409        </xs:simpleType> 
     410      </xs:attribute> 
     411      <xs:attribute name="type" type="xs:NMTOKEN" use="required" /> 
     412      <xs:attribute name="title" type="xs:ID" use="required" /> 
     413      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     414      <xs:attribute name="created" type="xs:string" use="required" /> 
     415    </xs:complexType> 
     416  </xs:element> 
     417 
     418  <xs:element name="zone"> 
     419    <xs:complexType mixed="true"> 
     420      <xs:choice> 
     421        <xs:element ref="node" /> 
     422        <xs:element ref="zone" /> 
     423      </xs:choice> 
     424      <xs:attribute name="id" type="xs:NMTOKEN" use="required" /> 
     425      <xs:attribute name="zone_nodes" type="xs:NMTOKEN" use="required" /> 
     426      <xs:attribute name="ntp_servers" type="xs:string" use="optional" /> 
     427      <xs:attribute name="created" type="xs:string" use="required" /> 
     428      <xs:attribute name="updated" type="xs:string" use="required" /> 
     429      <xs:attribute name="box" type="xs:string" use="required" /> 
     430      <xs:attribute name="access_points" type="xs:NMTOKEN" use="required" /> 
     431      <xs:attribute name="parent_id" use="required"> 
     432        <xs:simpleType> 
     433          <xs:restriction base="xs:NMTOKEN"> 
     434            <xs:enumeration value="15231" /> 
     435            <xs:enumeration value="2444" /> 
     436            <xs:enumeration value="8349" /> 
     437          </xs:restriction> 
     438        </xs:simpleType> 
     439      </xs:attribute> 
     440      <xs:attribute name="dns_servers" type="xs:string" use="optional" /> 
     441      <xs:attribute name="graph_server" type="xs:NMTOKEN" use="optional" /> 
     442      <xs:attribute name="title" type="xs:string" use="required" /> 
     443      <xs:attribute name="services" type="xs:NMTOKEN" use="optional" /> 
     444      <xs:attribute name="links" type="xs:NMTOKEN" use="required" /> 
     445      <xs:attribute name="devices" type="xs:NMTOKEN" use="optional" /> 
     446      <xs:attribute name="time_zone" type="xs:string" use="required" fixed="+01 2 2" /> 
     447      <xs:attribute name="clients" type="xs:NMTOKEN" use="required" /> 
     448    </xs:complexType> 
     449  </xs:element> 
     450 
     451</xs:schema> 
     452}}}