aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/multi_struct/shop.sd
blob: ec12414cb927c26770938132a37039c499f94bec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema shop {
    document shop {
        struct mystruct {
            field one type string {}
            field two type string {}
            field three type string {}
        }
        field some_stuff type map<string, mystruct> {
            indexing: summary
        }
    }
}