-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSchedulerConfig.xsd
40 lines (28 loc) · 1.2 KB
/
SchedulerConfig.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
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ldif="http://www4.wiwiss.fu-berlin.de/ldif/"
elementFormDefault="qualified"
targetNamespace="http://www4.wiwiss.fu-berlin.de/ldif/">
<!-- importJobs element -->
<xs:element name="import" abstract="true" />
<xs:element name="importJob" type="xs:string" substitutionGroup="ldif:import"/>
<xs:element name="importJobs" substitutionGroup="ldif:import">
<xs:complexType>
<xs:sequence>
<!-- support files and directories, both from local and hdfs -->
<xs:element name="importJob" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="scheduler">
<xs:complexType>
<xs:all>
<xs:element name="properties" type="xs:string" minOccurs="0" />
<xs:element name="dataSources" type="xs:string" minOccurs="0" />
<xs:element ref="ldif:import" />
<xs:element name="integrationJob" type="xs:string" />
<xs:element name="dumpLocation" type="xs:string" />
</xs:all>
</xs:complexType>
</xs:element>
</xs:schema>