aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/nextgen/implicitstructtypes.sd
blob: de5d24810acd4ca59377e16fff7f15c9f49adf27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2016 Yahoo Inc. 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 type string {
            source: doc_str_sum
        }
    }
}