summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/services.rnc
blob: 9928cdbdf23bed0376316b21d83115fbdf380767 (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
31
# Copyright 2016 Yahoo Inc. 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 "storage.rnc"
include "routing.rnc"
include "containercluster.rnc"
include "genericcluster.rnc"
include "legacygenericcluster.rnc"

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