aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/structandfieldset/test.sd
blob: 9915b82cb016fdad06fcbd0644dcf9b745e8373e (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
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema test {

    document test {

        field tag type string {
            indexing: attribute
        }

        struct person {
            field first_name type string {}
            field last_name  type string {}
        }

        field people type array<person> {
            indexing: summary
            struct-field first_name {
                indexing: attribute
            }
            struct-field last_name  {
                indexing: attribute
                rank: filter
            }
        }

    }

    fieldset default {
        fields: tag, people.first_name
    }

}