Wiki source code of Gateway Response
Last modified by Eva Torken on 2024/03/19 14:28
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{container}}{{container layoutStyle="columns"}}((( | ||
| 2 | On this page you will find the information needed to complete the exercise. | ||
| 3 | |||
| 4 | Should you have any questions, please contact [[academy@emagiz.com>>mailto:academy@emagiz.com]]. | ||
| 5 | |||
| 6 | ===1. XSD === | ||
| 7 | |||
| 8 | Below, the information on the Gateway Response, needed for the exercise, is provided. | ||
| 9 | |||
| 10 | {{code language="xml"}}<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
| 11 | <xs:complexType name="root"> | ||
| 12 | <xs:sequence> | ||
| 13 | <xs:element maxOccurs="unbounded" name="carrier" type="carrier"/> | ||
| 14 | </xs:sequence> | ||
| 15 | </xs:complexType> | ||
| 16 | <xs:complexType name="carrier"> | ||
| 17 | <xs:sequence> | ||
| 18 | <xs:element minOccurs="0" name="name" type="xs:string"/> | ||
| 19 | <xs:element minOccurs="0" name="code" type="xs:string"/> | ||
| 20 | </xs:sequence> | ||
| 21 | </xs:complexType> | ||
| 22 | <xs:element name="root" type="root"/> | ||
| 23 | </xs:schema>{{/code}} | ||
| 24 | |||
| 25 | )))((({{toc/}}))){{/container}}{{/container}} |