aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd
blob: 9f6574d3b1b9434b4d8e640d796e988eb33022b7 (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 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_bool type bool           { 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 }
    }
}