aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/nextgen/implicitstructtypes.sd
blob: 182805a0ae7989cd8fde0ae1ce31badd00b505d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search implicitstructtypes {
    document implicitstructtypes {
        field doc_str type string {
            indexing: index | summary
            summary doc_str_sum: full
        }
        field doc_uri type uri {
            indexing: index | summary
        }
    }
    document-summary docsum {
        summary docsum_str {
            source: doc_str
        }
    }
}