<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified" elementFormDefault="qualified">
    <xs:annotation>
        <xs:documentation xml:lang="ru">Структура данных</xs:documentation>
    </xs:annotation>

    <xs:element type="ElementList" name="elementList"/>

    <xs:complexType name="ElementList">
        <xs:annotation>
            <xs:documentation xml:lang="ru">Реестр лесопользователей-должников по плате за использование лесов в федеральный бюджет</xs:documentation>
        </xs:annotation>

        <xs:sequence>
            <xs:element type="Item" name="item" minOccurs="0" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>

    <xs:complexType name="Item">
        <xs:annotation>
            <xs:documentation xml:lang="ru">Описание структуры полей.</xs:documentation>
        </xs:annotation>

        <xs:sequence>

            <xs:element type="xs:string" name="c1">
                <xs:annotation>
                    <xs:documentation xml:lang="ru">№</xs:documentation>
                </xs:annotation>
            </xs:element>

            <xs:element type="xs:string" name="c2">
                <xs:annotation>
                    <xs:documentation xml:lang="ru">Вид использования лесов</xs:documentation>
                </xs:annotation>
            </xs:element>

            <xs:element type="xs:string" name="c3">
                <xs:annotation>
                    <xs:documentation xml:lang="ru">Наименование лесопользователя (арендатора)</xs:documentation>
                </xs:annotation>
            </xs:element>

            <xs:element type="xs:string" name="c4">
                <xs:annotation>
                    <xs:documentation xml:lang="ru">ИНН лесопользователя (арендатора)</xs:documentation>
                </xs:annotation>
            </xs:element>

            <xs:element type="xs:string" name="c5">
                <xs:annotation>
                    <xs:documentation xml:lang="ru">Недоимка, тыс.руб.</xs:documentation>
                </xs:annotation>
            </xs:element>

        </xs:sequence>
    </xs:complexType>
</xs:schema>
