aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-01-07 10:56:41 +0100
committerMartin Polden <mpolden@mpolden.no>2022-01-07 14:43:37 +0100
commitae843dd9bd28be5c8445adf10dc7c0a6a69f2d97 (patch)
tree7d7c5b2fc602c54e3d634d0a0c07ab13d0ab1981 /config-model/src/main/resources
parente11472ccb26601fe74004a2400b44ea000c88d6f (diff)
Support date range in block window
Diffstat (limited to 'config-model/src/main/resources')
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc6
1 files changed, 4 insertions, 2 deletions
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index 51a286a13c8..819e6b79fbb 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -58,8 +58,10 @@ Upgrade = element upgrade {
BlockChange = element block-change {
attribute revision { xsd:boolean }? &
attribute version { xsd:boolean }? &
- attribute days { xsd:string } &
- attribute hours { xsd:string } &
+ attribute days { xsd:string }? &
+ attribute hours { xsd:string }? &
+ attribute from-date { xsd:string }? &
+ attribute to-date { xsd:string }? &
attribute time-zone { xsd:string }?
}