<xsd:element name="methodCall"> <xsd:complexType> <xsd:all> <xsd:element name="methodName"> <xsd:simpleType> <xsd:restriction base="ASCIIString"> <xsd:pattern value="([A-Za-z0-9]|/|\.|:|_)*"/> </xsd:restriction> </xsd:simpleType> </xsd:element> <xsd:element name="params" minOccurs="0" maxOccurs="1"> <xsd:complexType> <xsd:sequence> <xsd:element name="param" type="ParamType" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:all> </xsd:complexType> </xsd:element> |