diff options
author | Thomas <> | 2021-03-29 15:38:23 +0200 |
---|---|---|
committer | Thomas <> | 2021-03-29 15:38:23 +0200 |
commit | ea2295a8671c88a8510f764e70c8f1c135bf5675 (patch) | |
tree | d3a8f4150cd78f420295a8cfe3421f7ae68dbc67 /src/main/resources/wsdl/ur_V7/schema/specific | |
parent | 12fb29d8c9bb0e611c395b98b0c25e9107bcddf3 (diff) | |
download | egovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.tar.gz egovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.tar.bz2 egovutils-ea2295a8671c88a8510f764e70c8f1c135bf5675.zip |
add UR v7 web-service spezification
Diffstat (limited to 'src/main/resources/wsdl/ur_V7/schema/specific')
-rw-r--r-- | src/main/resources/wsdl/ur_V7/schema/specific/urs-v7-CustomFault.xsd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/ur_V7/schema/specific/urs-v7-CustomFault.xsd b/src/main/resources/wsdl/ur_V7/schema/specific/urs-v7-CustomFault.xsd new file mode 100644 index 0000000..b0f1247 --- /dev/null +++ b/src/main/resources/wsdl/ur_V7/schema/specific/urs-v7-CustomFault.xsd @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ xmlns="http://reference.e-government.gv.at/namespace/xml-sw/1#"
+ targetNamespace="http://reference.e-government.gv.at/namespace/xml-sw/1#">
+
+ <xs:include schemaLocation="../urs-v7-xml-sw.xsd"/>
+
+ <xs:element name="XmlSwFault" type="CustomFaultType"/>
+
+ <xs:element name="Message" type="CustomFaultType"/>
+
+ <xs:complexType name="CustomFaultType" final="extension">
+ <xs:annotation>
+ <xs:documentation>CustomFault reporting structure</xs:documentation>
+ </xs:annotation>
+ <xs:sequence>
+ <xs:element name="Code" type="xs:integer"/>
+ <xs:element name="Reason" type="xs:string" maxOccurs="unbounded"/>
+ <xs:element name="Help" type="xs:string" minOccurs="0"/>
+ <xs:element ref="FaultHint" minOccurs="0" maxOccurs="unbounded"/>
+
+ </xs:sequence>
+ </xs:complexType>
+</xs:schema>
|