Schema and beginnings of man page for zoom filter
[metaproxy-moved-to-github.git] / xml / schema / filter_zoom.rnc
1 # Metaproxy XML config file schema
2
3 namespace mp = "http://indexdata.com/metaproxy"
4
5 filter_zoom =
6   attribute type { "zoom" },
7   attribute id { xsd:NCName }?,
8   attribute name { xsd:NCName }?,
9   element mp:torus {
10     attribute url { xsd:string },
11     attribute xsldir { xsd:string }?
12   }?,
13   element mp:fieldmap {
14     attribute cql { xsd:string },
15     attribute ccl { xsd:string }?
16   }*,
17   element mp:cclmap {
18     element mp:qual {
19       attribute name { xsd:string },
20       element mp:attr {
21         attribute type { xsd:string },
22         attribute value { xsd:string }
23       }+
24     }*
25   }?
26
27