summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/cfg/application/validation/search_alltypes/searchdefinitions/simple.sd
blob: 2a4c4a6857632810e38cb33a2fbfab01fff70136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search simple {
    document simple {
        field my_pos type position        { indexing: summary }
        field my_int type int             { indexing: summary }
        field my_float type float         { indexing: summary }
        field my_str type string          { indexing: summary }
        field my_raw type raw             { indexing: summary }
        field my_long type long           { indexing: summary }
        field my_double type double       { indexing: summary }
        field my_uri type uri             { indexing: summary }
        field my_byte type byte           { indexing: summary }
        field my_predicate type predicate { indexing: summary }
        field my_tensor type tensor(x{})  { indexing: summary }
        field my_reference type reference<parent> { indexing: summary | attribute }
    }
}