-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmd_extractor.xsd
31 lines (29 loc) · 1.4 KB
/
md_extractor.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://com/exlibris/digitool/repository/api/xmlbeans"
targetNamespace="http://com/exlibris/digitool/repository/api/xmlbeans"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="mdExtractor">
<xs:complexType>
<xs:sequence>
<xs:element name="agent" type="xs:string" minOccurs="1" maxOccurs="1" />
<xs:element name="profile" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="formatName" type="xs:string" minOccurs="1" maxOccurs="1" />
<xs:element name="formatVersion" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="mimeType" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="imageCount" type="xs:int" minOccurs="0" maxOccurs="1" />
<xs:element name="isValid" type="xs:boolean" minOccurs="1" maxOccurs="1" />
<xs:element name="isWellFormed" type="xs:boolean" minOccurs="0" maxOccurs="1" />
<xs:element name="attributes" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:attribute name="ID" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>ID: Attribute name</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>