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