72 lines
3.5 KiB
XML
72 lines
3.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright (C) Revenue Collection Systems France S.A.S. - 2018-2025 ALL RIGHTS RESERVED
|
|
|
|
-->
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:loc="http://www.thales.dc/Localized"
|
|
xmlns="http://www.thales.dc/StockProviderExchange"
|
|
targetNamespace="http://www.thales.dc/StockProviderExchange"
|
|
version="1.0.1">
|
|
|
|
<!-- Annotate all modification of the xsd file according to version -->
|
|
<xs:annotation>
|
|
<xs:documentation>-----------------------------------------------------------------------------------------------------------------------</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:annotation>
|
|
<xs:documentation>Version List</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:annotation>
|
|
<xs:documentation>-----------------------------------------------------------------------------------------------------------------------</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:annotation>
|
|
<xs:documentation>sprint 186 - 23/08/2023 - Version 1.0.1</xs:documentation>
|
|
<xs:documentation>
|
|
change versioning and add documentation to respect XSD versioning format
|
|
</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:annotation>
|
|
<xs:documentation>-----------------------------------------------------------------------------------------------------------------------</xs:documentation>
|
|
</xs:annotation>
|
|
|
|
<!-- Import of xsd file -->
|
|
<xs:import namespace="http://www.thales.dc/Localized" schemaLocation="Localized.xsd"/>
|
|
|
|
|
|
<!-- Description of the StockProviderExchange structure -->
|
|
<xs:element name="StockProviderExchange" type="StockProviderExchange"/>
|
|
<xs:complexType name="StockProviderExchange">
|
|
<xs:all>
|
|
<xs:element name="ContactName" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="CreationDate" type="xs:dateTime" minOccurs="0"/>
|
|
<xs:element name="DeletionDate" type="xs:dateTime" minOccurs="0"/>
|
|
<xs:element name="EmailAddress" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="ExtendedData" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="Id" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="PostalAddress" type="Address" minOccurs="0"/>
|
|
<xs:element name="ProviderIdentifier" type="xs:string"/>
|
|
<xs:element name="ProviderName" type="xs:string"/>
|
|
<xs:element name="ProviderPhone" type="ProviderPhone" minOccurs="0"/>
|
|
<xs:element name="Remark" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="Website" type="xs:string" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
<xs:complexType name="ProviderPhone">
|
|
<xs:all>
|
|
<xs:element name="PrimaryPhoneNumber" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="SecondaryPhoneNumber" type="xs:string" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
<xs:complexType name="Address">
|
|
<xs:all>
|
|
<xs:element name="City" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="Complement" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="Country" type="loc:LocalizedCountry" minOccurs="0"/>
|
|
<xs:element name="PostalCode" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="State" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="Street" type="xs:string" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:schema>
|