<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns="http://example.com/twisted#">
  <Server>
    <app>
      <rdf:Description>
        <description>Some app</description>
        <path>/someapp</path>
        <resource>someapp.SomeApp</resource>
        <users>authdomains/someapp</users>
      </rdf:Description>
    </app>
    <app>
      <rdf:Description>
        <description>My tiny little app...

...with verbose multi-line description text!
	</description>
        <path>/</path>
        <resource>myapp.MyRootApp</resource>
        <users>authdomains/myapp</users>
      </rdf:Description>
    </app>
    <binder>
      <rdf:Description>
        <ip>0.0.0.0</ip>
        <port rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">80</port>
      </rdf:Description>
    </binder>
    <binder>
      <rdf:Description>
        <ip>0.0.0.0</ip>
        <pem>server.pem</pem>
        <port rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">443</port>
      </rdf:Description>
    </binder>
  </Server>
  <Server>
    <app>
      <rdf:Description>
        <path>/</path>
        <resource>anotherapp.AnotherApp</resource>
      </rdf:Description>
    </app>
    <binder>
      <rdf:Description>
        <ip>127.0.0.1</ip>
        <port rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2020</port>
      </rdf:Description>
    </binder>
  </Server>
</rdf:RDF>
