mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
19 lines
574 B
XML
19 lines
574 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xs:schema id="ImageMetaDataCommonSchema"
|
|
elementFormDefault="qualified"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
>
|
|
|
|
<xs:include schemaLocation="ImageMetaDataCommon.xsd"/>
|
|
<xs:element name="AVSImageMetaDataCommon">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="CommonTag" minOccurs="0" maxOccurs="unbounded" type="CommonTagType"/>
|
|
</xs:sequence>
|
|
<xs:attribute name="typeid" type="xs:unsignedInt" use="optional"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
|
|
</xs:schema>
|