Gateway Response

Last modified by Eva Torken on 2024/03/19 14:28

On this page you will find the information needed to complete the exercise.
 
Should you have any questions, please contact academy@emagiz.com.

1. XSD

Below, the information on the Gateway Response, needed for the exercise, is provided.

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="root">
<xs:sequence>
<xs:element maxOccurs="unbounded" name="carrier" type="carrier"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="carrier">
<xs:sequence>
<xs:element minOccurs="0" name="name" type="xs:string"/>
<xs:element minOccurs="0" name="code" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="root" type="root"/>
</xs:schema>