Схема ответа "list"
<?xml version="1.0" encoding="UTF-8"?> | ||||||||
<xs:schema xmlns:xs:="http://www.w3.org/2001/XMLSchema"> | ||||||||
<xs:element name="list"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Список файлов в папке "исходящие" | ||||||||
</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
<xs:complexType> | ||||||||
<xs:sequence> | ||||||||
<xs:element name="file" nillable="false" minOccurs="0" | ||||||||
maxOccurs="unbounded"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Файл</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
<xs:complexType> | ||||||||
<xs:attribute name="name" type="xs:string" | ||||||||
use="required"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Имя файла</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
</xs:attribute> | ||||||||
<xs:attribute name="size" type="xs:integer" use="required"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Размер файла | ||||||||
в байтах</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
</xs:attribute> | ||||||||
</xs:complexType> | ||||||||
</xs:element> | ||||||||
</xs:sequence> | ||||||||
<xs:attribute name="count" type="xs:integer" use="required"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Общее кол-во файлов</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
</xs:attribute> | ||||||||
<xs:attribute name="size" type="xs:integer" use="required"> | ||||||||
<xs:annotation> | ||||||||
<xs:documentation>Общий размер файлов в байтах</xs:documentation> | ||||||||
</xs:annotation> | ||||||||
</xs:attribute> | ||||||||
</xs:complexType> | ||||||||
</xs:element> | ||||||||
</xs:schema> |