27 lines
1001 B
XML
27 lines
1001 B
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="http://www.thales.dc/CappingDetails"
|
|
targetNamespace="http://www.thales.dc/CappingDetails"
|
|
version="1.0">
|
|
<xs:element name="CappingDetails" type="CappingDetails"/>
|
|
<xs:complexType name="CappingDetails">
|
|
<xs:all>
|
|
<xs:element name="CappingRuleId" type="xs:string">
|
|
<xs:annotation>
|
|
<xs:documentation>Id of the capping rule</xs:documentation>
|
|
</xs:annotation>
|
|
</xs:element>
|
|
<xs:element name="CappingInstanceId" type="xs:string">
|
|
<xs:annotation>
|
|
<xs:documentation>Id of the instance of capping rule</xs:documentation>
|
|
</xs:annotation>
|
|
</xs:element>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:schema>
|