sort.xsd.svn-base

来自「由国外的一个著名的geonetwork修改而来」· SVN-BASE 代码 · 共 41 行

SVN-BASE
41
字号
<?xml version="1.0" encoding="UTF-8"?><xsd:schema   targetNamespace="http://www.opengis.net/ogc"   xmlns:ogc="http://www.opengis.net/ogc"   xmlns:xsd="http://www.w3.org/2001/XMLSchema"   elementFormDefault="qualified"   version="1.1.0">   <xsd:include schemaLocation="expr.xsd"/>   <!-- ============================================= -->   <!-- SORTBY EXPRESSION                             -->   <!-- ============================================= -->   <xsd:element name="SortBy" type="ogc:SortByType"/>   <!-- ============================================= -->   <!-- COMPLEX TYPES                                 -->   <!-- ============================================= -->   <xsd:complexType name="SortByType">      <xsd:sequence>         <xsd:element name="SortProperty"                      type="ogc:SortPropertyType"                      maxOccurs="unbounded"/>      </xsd:sequence>   </xsd:complexType>   <xsd:complexType name="SortPropertyType">      <xsd:sequence>         <xsd:element ref="ogc:PropertyName"/>         <xsd:element name="SortOrder"                      type="ogc:SortOrderType"                      minOccurs="0"/>      </xsd:sequence>   </xsd:complexType>   <xsd:simpleType name="SortOrderType">      <xsd:restriction base="xsd:string">         <xsd:enumeration value="DESC"/>         <xsd:enumeration value="ASC"/>      </xsd:restriction>   </xsd:simpleType></xsd:schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?