aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/clients-v2.rnc
blob: 5e50135edee81e282b8ed92ce9b6f42f61c90bc2 (plain) (blame)
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
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
Clients20 =
   attribute version { "2.0" } &
   LoadTypes?

LoadTypes = element load-types {
    element type {
        attribute name { text } &
        attribute default-priority { text }?
    }*
}

FeederOptions20 = element feederoptions {
   FeederOptionsOpts20 &
   DocProcChain?
}

FeederOptionsOpts20 = element abortondocumenterror { xsd:boolean }? &
   element retryenabled { text }? &
   element route { text }? &
   element maxpendingdocs { xsd:positiveInteger }? &
   element maxpendingbytes { xsd:positiveInteger }? &
   element retrydelay { xsd:double { minInclusive = "0.0" } }? &
   element timeout { xsd:double { minInclusive = "0.0" } }? &
   element tracelevel { xsd:positiveInteger }? &
   element mbusport { xsd:positiveInteger }?


DocProcChain = element docprocchain {
   text
}