themes.xsd
XML 1.0 document, ASCII text
1<?xml version="1.0"?> 2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="https://theme.roundabout-host.com/"> 3<xs:element name="themes"> 4<xs:complexType> 5<xs:sequence> 6<xs:element name="theme" minOccurs="0" maxOccurs="unbounded"> 7<xs:annotation> 8<xs:documentation>Defines the start of a theme.</xs:documentation> 9</xs:annotation> 10<xs:complexType> 11<xs:sequence> 12<xs:element name="title" type="xs:string" minOccurs="1" maxOccurs="1"> 13<xs:annotation> 14<xs:documentation>Name of the theme in question.</xs:documentation> 15</xs:annotation> 16</xs:element> 17<xs:element name="author" minOccurs="1" maxOccurs="1"> 18<xs:annotation> 19<xs:documentation>Author of the theme in question. Content is the displayed name of the author.</xs:documentation> 20</xs:annotation> 21<xs:complexType> 22<xs:simpleContent> 23<xs:extension base="xs:string"> 24<xs:attribute name="uri" type="xs:anyURI"> 25<xs:annotation> 26<xs:documentation>Full URL of author's profile.</xs:documentation> 27</xs:annotation> 28</xs:attribute> 29<xs:attribute name="instance" type="xs:string"> 30<xs:annotation> 31<xs:documentation>Name of author's instance. (Example: Roundabout-host.com)</xs:documentation> 32</xs:annotation> 33</xs:attribute> 34<xs:attribute name="username" type="xs:string"> 35<xs:annotation> 36<xs:documentation>Username of author</xs:documentation> 37</xs:annotation> 38</xs:attribute> 39</xs:extension> 40</xs:simpleContent> 41</xs:complexType> 42</xs:element> 43<xs:element name="uri" type="xs:anyURI" minOccurs="1" maxOccurs="1"> 44<xs:annotation> 45<xs:documentation>Path to the theme's CSS file, relative to the themes directory.</xs:documentation> 46</xs:annotation> 47</xs:element> 48</xs:sequence> 49</xs:complexType> 50</xs:element> 51</xs:sequence> 52</xs:complexType> 53</xs:element> 54</xs:schema> 55