aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/multi_struct/shop.sd
blob: 7b96bbed4717ea7d837660ef108c6d16bef7997d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
        }
    }
}