aboutsummaryrefslogtreecommitdiffstats
path: root/documentgen-test/etc/complex/book.sd
blob: 4879b6c150ab82c95ef1f6da3d57aeaa7964b26d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search book {
    document book inherits common {
        struct ss0 {
            field s0 type string { }
            field d0 type double { }
        }
        struct ss1 {
            field s1 type string { }
            field l1 type long { }
            field i1 type int { }
            field d1 type double { }
            field as1 type array<string> { }
            field al1 type array<long> { }
            field ss01 type ss0 { }
        }
        struct ss2 {
            field s21 type string { }
            field ss02 type ss0 { }
        }
        field mystruct type ss1 {

        }
        field mystruct2 type ss2 {

        }
        field mywsinteger type weightedset<int> {
            indexing: attribute
        }
        field myarrayint type array<int> {
            indexing: attribute
        }
        field mytriplearray type array<array<array<int>>> {

        }
        field stringmap type map<string, string> {

        }
        field structmap type map<int, ss1> {

        }
        field mysinglestructarray type array<ss1> {

        }
        field author type string {
            bolding: on
            indexing: summary | index
        }
        field isbn type string {
            indexing: summary | index
        }
        field year type int {
            indexing: summary | attribute
        }
        field description type string {
            indexing: summary | index
            summary: dynamic
        }
        field myraw type raw {

        }
        field ref type reference<parent> {
            indexing: attribute
        }
        field vector type tensor(x{}) {
            indexing: attribute | summary
        }
    }

    import field ref.dummy as my_dummy {}
    import field ref.foo as my_foo {}

    rank-profile default {
        first-phase {
            expression: nativeRank
        }
    }
    rank-profile rp1 inherits default {

    }
    rank-profile rp2 inherits default {

    }
    field sw1 type float {
        indexing: input weight_src * 67 + input w1_src + input w2_src | summary
    }
    field didinteger type array<int> {
        indexing: input did | split " " | for_each { to_int } | attribute
    }

}