aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/processing.rnc
blob: c48d66e9c3daae6aedd433b580f5d710a291accb (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
32
33
34
35
36
37
38
39
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# Schema for processing components and chains

ProcessingRenderer = element renderer {
   ComponentDefinition
}

Processing =
    element processing {
        Processor* &
        Chain* &
        ProcessingRenderer* &
        GenericConfig*
   }

ChainBaseContent =
    ComponentId &
    ChainInheritance &
    GenericConfig*

Chain = element chain {
        ChainBaseContent &
        Processor* &
        Phase*
    }

ChainInheritance =
    attribute inherits { text }? &
    attribute excludes { text }? &
    element inherits {
        element chain { ComponentSpec }* &
        element exclude { ComponentSpec }*
    }?

Processor =
    element processor {
        BundleSpec &
        GenericSearcherOrDocumentProcessor
    }