aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/services.rnc
blob: c4eb7435ca6d5f3c4946337b14da329e880bfdbb (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
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
include "common.rnc"
include "admin.rnc"
include "clients.rnc"
include "content.rnc"
include "docproc.rnc"
include "routing.rnc"
include "containercluster.rnc"
include "genericcluster.rnc"
include "legacygenericcluster.rnc"

start = element services {
   attribute version { "1.0" }? &
   attribute major-version { text }? & # TODO: Remove on Vespa 7
   attribute application-type { "hosted-infrastructure" }? &
   LegacyGenericCluster* &
   GenericCluster* &
   GenericConfig* &
   Admin? &
   Clients? &
   Content* &
   ContainerCluster* &
   Routing?
}
| GenericCluster
| Admin
| Clients
| Content
| ContainerCluster