aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/resources')
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc11
1 files changed, 8 insertions, 3 deletions
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index ecd43d1ad28..f24750bde8b 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -113,15 +113,20 @@ Delay = element delay {
}
EndpointRegion = element region {
- attribute instance { xsd:string }? &
- attribute weight { xsd:long }? &
+ text
+}
+
+EndpointInstance = element instance {
+ attribute weight { xsd:long } &
text
}
Endpoint = element endpoint {
attribute id { xsd:string }? &
attribute container-id { xsd:string } &
- EndpointRegion*
+ attribute region { xsd:string }? &
+ EndpointRegion* &
+ EndpointInstance*
}
Endpoints = element endpoints {