vxml-datatypes.xsd
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:8k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema targetNamespace="http://www.w3.org/2001/vxml" 
  3. xmlns="http://www.w3.org/2001/vxml" 
  4. xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  5. elementFormDefault="qualified" version="1.0">
  6.     <xsd:annotation>
  7.         <xsd:documentation>VoiceXML 2.0 datatypes (20021115)</xsd:documentation>
  8.     </xsd:annotation>
  9.     <xsd:annotation>
  10.         <xsd:documentation>
  11. Copyright 1998-2004 W3C (MIT, ERCIM, Keio), All Rights Reserved. Permission to
  12. use, copy, modify and distribute the VoiceXML schema and its accompanying
  13. documentation for any purpose and without fee is hereby granted in perpetuity,
  14. provided that the above copyright notice and this paragraph appear in all
  15. copies.  The copyright holders make no representation about the suitability of
  16. the schema for any purpose. It is provided "as is" without expressed or
  17. implied warranty.
  18. </xsd:documentation>
  19.     </xsd:annotation>
  20.     <xsd:annotation>
  21.         <xsd:documentation>
  22. XML Schema datatypes module for VoiceXML 2.0
  23. </xsd:documentation>
  24.     </xsd:annotation>
  25.     <xsd:annotation>
  26.         <xsd:documentation>General Datatypes</xsd:documentation>
  27.     </xsd:annotation>
  28.     <xsd:simpleType name="Boolean.datatype">
  29.         <xsd:annotation>
  30.             <xsd:documentation>Boolean: true or false only</xsd:documentation>
  31.         </xsd:annotation>
  32.         <xsd:restriction base="xsd:NMTOKENS">
  33.             <xsd:enumeration value="true"/>
  34.             <xsd:enumeration value="false"/>
  35.         </xsd:restriction>
  36.     </xsd:simpleType>
  37.     <xsd:simpleType name="URI.datatype">
  38.         <xsd:annotation>
  39.             <xsd:documentation>
  40.              The xsd:anyURI type and thus URI references in VoiceXML documents may contain a wide array of international characters. 
  41.              Implementers should reference RFC 3987 and the "Character Model for the World Wide Web 1.0: Resource Identifiers"
  42.              in order to provide appropriate support for these characters in VoiceXML documents and when processing values of this type 
  43.              or mapping them to URIs.
  44.             </xsd:documentation>
  45.         </xsd:annotation>
  46.         <xsd:restriction base="xsd:anyURI"/>
  47.     </xsd:simpleType>
  48.     <xsd:simpleType name="Script.datatype">
  49.         <xsd:annotation>
  50.             <xsd:documentation>Script Expression (ECMA-262 ECMAScript)</xsd:documentation>
  51.         </xsd:annotation>
  52.         <xsd:restriction base="xsd:string"/>
  53.     </xsd:simpleType>
  54.     <xsd:simpleType name="Integer.datatype">
  55.         <xsd:annotation>
  56.             <xsd:documentation>Non-negative integer</xsd:documentation>
  57.         </xsd:annotation>
  58.         <xsd:restriction base="xsd:nonNegativeInteger"/>
  59.     </xsd:simpleType>
  60.     <xsd:simpleType name="Duration.datatype">
  61.         <xsd:annotation>
  62.             <xsd:documentation>Time designation following Time [CSS2]; negative numbers not allowed (6.5)</xsd:documentation>
  63.         </xsd:annotation>
  64.         <xsd:restriction base="xsd:string">
  65.             <xsd:pattern value="(+)?([0-9]*.)?[0-9]+(ms|s)"/>
  66.         </xsd:restriction>
  67.     </xsd:simpleType>
  68.     <xsd:simpleType name="ContentType.datatype">
  69.         <xsd:annotation>
  70.             <xsd:documentation>Content type [RFC2045]</xsd:documentation>
  71.         </xsd:annotation>
  72.         <xsd:list itemType="xsd:string"/>
  73.     </xsd:simpleType>
  74.     <xsd:annotation>
  75.         <xsd:documentation>VoiceXML specific datatypes</xsd:documentation>
  76.     </xsd:annotation>
  77.     <xsd:simpleType name="RestrictedVariableName.datatype">
  78.         <xsd:annotation>
  79.             <xsd:documentation>Variable name which are NMTOKEN. Additional
  80.         constraints: doesn't start with "_", doesn't contain "." , must 
  81. follow ECMAScript variable naming conventions; not include ECMAScript 
  82. reserve words</xsd:documentation>
  83.         </xsd:annotation>
  84.         <!-- was xsd:NMTOKEN -->
  85.       <xsd:restriction base="xsd:token">
  86.         <xsd:pattern value="([a-zA-Z]|[a-zA-Z$][a-zA-Z0-9_$]*[a-zA-Z0-9_])"/>
  87.       </xsd:restriction>
  88.     </xsd:simpleType>
  89.     <xsd:simpleType name="VariableName.datatype">
  90.         <xsd:annotation>
  91.             <xsd:documentation>Variable name which are model on NMTOKENS
  92.         except that "$" is permitted. Additional constraints: must 
  93. follow ECMAScript variable naming conventions; not include ECMAScript 
  94. reserve words</xsd:documentation>
  95.         </xsd:annotation>
  96. <xsd:restriction base="xsd:token">
  97. <xsd:pattern value="['$'c]+"/>
  98. </xsd:restriction>
  99.     </xsd:simpleType>
  100.     <xsd:simpleType name="RestrictedVariableNames.datatype">
  101.         <xsd:annotation>
  102.             <xsd:documentation>space separated list of restricted variable names </xsd:documentation>
  103.         </xsd:annotation>
  104.         <xsd:restriction base="xsd:NMTOKENS">
  105. </xsd:restriction>
  106.     </xsd:simpleType>
  107.     <xsd:simpleType name="VariableNames.datatype">
  108.         <xsd:annotation>
  109.             <xsd:documentation>space separated list of variable names including shadow variables</xsd:documentation>
  110.         </xsd:annotation>
  111.         <xsd:restriction base="xsd:string">
  112. <xsd:pattern value="['$'c]+([s]+['$'c]+)*"/>
  113. </xsd:restriction>
  114.     </xsd:simpleType>
  115.     <xsd:simpleType name="DTMFSequence.datatype">
  116.         <xsd:annotation>
  117.             <xsd:documentation>DTMF sequence ([0-9#*] with spaces)</xsd:documentation>
  118.         </xsd:annotation>
  119.         <xsd:restriction base="xsd:string">
  120.             <xsd:pattern value="([s]*[0-9#*]+[s]*)+"/>
  121.         </xsd:restriction>
  122.     </xsd:simpleType>
  123.     <xsd:simpleType name="EventName.datatype">
  124.         <xsd:annotation>
  125.             <xsd:documentation>EventName (5.2)</xsd:documentation>
  126.         </xsd:annotation>
  127.         <xsd:restriction base="xsd:NMTOKEN"/>
  128.     </xsd:simpleType>
  129.     <xsd:simpleType name="EventNames.datatype">
  130.         <xsd:annotation>
  131.             <xsd:documentation>space separated list of EventName.datatype</xsd:documentation>
  132.         </xsd:annotation>
  133.         <xsd:restriction base="xsd:NMTOKENS"/>
  134.     </xsd:simpleType>
  135.     <xsd:simpleType name="Bargeintype.datatype">
  136.         <xsd:annotation>
  137.             <xsd:documentation>bargeintype: speech or hotword (4.1.5)</xsd:documentation>
  138.         </xsd:annotation>
  139.         <xsd:restriction base="xsd:NMTOKEN">
  140.             <xsd:enumeration value="speech"/>
  141.             <xsd:enumeration value="hotword"/>
  142.         </xsd:restriction>
  143.     </xsd:simpleType>
  144. <xsd:simpleType name="Fetchhint.datatype">
  145.  <xsd:annotation>
  146.   <xsd:documentation>prefetch or safe</xsd:documentation>
  147.  </xsd:annotation>
  148.   <xsd:restriction base="xsd:NMTOKEN">
  149.       <xsd:enumeration value="prefetch"/>
  150.       <xsd:enumeration value="safe"/>
  151.  </xsd:restriction>
  152. </xsd:simpleType>
  153. <xsd:simpleType name="Accept.datatype">
  154.  <xsd:annotation>
  155.   <xsd:documentation>exact or approximate</xsd:documentation>
  156.  </xsd:annotation>
  157.  <xsd:restriction base="xsd:NMTOKEN">
  158.        <xsd:enumeration value="exact"/>
  159.        <xsd:enumeration value="approximate"/>
  160.  </xsd:restriction>
  161. </xsd:simpleType>
  162. <xsd:simpleType name="GrammarScope.datatype">
  163.  <xsd:annotation>
  164.   <xsd:documentation>dialog or document</xsd:documentation>
  165.  </xsd:annotation>
  166.    <xsd:restriction base="xsd:NMTOKEN">
  167.        <xsd:enumeration value="document"/>
  168.        <xsd:enumeration value="dialog"/>
  169.    </xsd:restriction>
  170. </xsd:simpleType>
  171.      <xsd:simpleType name="Method.datatype">
  172.  <xsd:annotation>
  173.   <xsd:documentation>get or post</xsd:documentation>
  174.  </xsd:annotation>
  175.                 <xsd:restriction base="xsd:NMTOKEN">
  176.                     <xsd:enumeration value="get"/>
  177.                     <xsd:enumeration value="post"/>
  178.                 </xsd:restriction>
  179.             </xsd:simpleType>
  180.   <xsd:simpleType name="FilledMode.datatype">
  181.  <xsd:annotation>
  182.   <xsd:documentation>any or all</xsd:documentation>
  183.  </xsd:annotation>
  184.        <xsd:restriction base="xsd:string">
  185.                       <xsd:enumeration value="any"/>
  186.                        <xsd:enumeration value="all"/>
  187.                    </xsd:restriction>
  188.                </xsd:simpleType>
  189.   <xsd:simpleType name="TransferType.datatype">
  190.     <xsd:annotation>
  191.       <xsd:documentation>bridge, blind, or consultation</xsd:documentation>
  192.     </xsd:annotation>
  193.        <xsd:restriction base="xsd:string">
  194.          <xsd:enumeration value="bridge"/>
  195.          <xsd:enumeration value="blind"/>
  196.          <xsd:enumeration value="consultation"/>
  197.        </xsd:restriction>
  198.   </xsd:simpleType>
  199. <xsd:simpleType name="Valuetype.datatype">
  200.  <xsd:annotation>
  201.   <xsd:documentation>data or ref</xsd:documentation>
  202.  </xsd:annotation>
  203. <xsd:restriction base="xsd:string">
  204.     <xsd:enumeration value="data"/>
  205.      <xsd:enumeration value="ref"/>
  206.          </xsd:restriction>
  207.  </xsd:simpleType>
  208. </xsd:schema>