summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/version/7.x/routing.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/resources/schema/version/7.x/routing.rnc')
-rw-r--r--config-model/src/main/resources/schema/version/7.x/routing.rnc28
1 files changed, 0 insertions, 28 deletions
diff --git a/config-model/src/main/resources/schema/version/7.x/routing.rnc b/config-model/src/main/resources/schema/version/7.x/routing.rnc
deleted file mode 100644
index 5ca033b2fd7..00000000000
--- a/config-model/src/main/resources/schema/version/7.x/routing.rnc
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-# RELAX NG compact syntax pattern
-# for Vespa MessageBus explicit routing config
-Routing = element routing {
- attribute version { "1.0" } &
- element routingtable {
- attribute protocol { string "document" } &
- attribute verify { xsd:boolean }? &
- element hop {
- attribute name { text } &
- attribute selector { text } &
- attribute ignore-result { xsd:boolean }? &
- element recipient {
- attribute session { text }
- }*
- }* &
- element route {
- attribute name { text } &
- attribute hops { text }
- }*
- }* &
- element services {
- attribute protocol { string "document" } &
- element service {
- attribute name { text }
- }*
- }*
-}