aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-01-22 23:01:04 +0100
committerJon Bratseth <bratseth@gmail.com>2023-01-22 23:01:04 +0100
commit2b118cc1b4a982fe213d596b4208b6cbf40e4ce0 (patch)
treee0fa73cbf4954c55d1dca2d350865a5122da6034 /config-model/src/main/resources
parentd59f7e92336f36ac3f66cee1d6ee137d61c93e1f (diff)
Add min-redundancy
Diffstat (limited to 'config-model/src/main/resources')
-rw-r--r--config-model/src/main/resources/schema/content.rnc8
1 files changed, 6 insertions, 2 deletions
diff --git a/config-model/src/main/resources/schema/content.rnc b/config-model/src/main/resources/schema/content.rnc
index 703001f0107..84338d49314 100644
--- a/config-model/src/main/resources/schema/content.rnc
+++ b/config-model/src/main/resources/schema/content.rnc
@@ -9,6 +9,10 @@ Redundancy = element redundancy {
xsd:nonNegativeInteger
}
+MinRedundancy = element min-redundancy {
+ xsd:nonNegativeInteger
+}
+
DistributionType = element distribution {
attribute type { string "strict" | string "loose" | string "legacy" }
}
@@ -104,8 +108,8 @@ Content = element content {
attribute version { "1.0" } &
attribute id { xsd:NCName }? &
attribute distributor-base-port { xsd:unsignedShort }? &
- # Mandatory
- Redundancy &
+ Redundancy? &
+ MinRedundancy? &
ContentSearch? &
Dispatch? &
ClusterTuning? &