summaryrefslogtreecommitdiff
path: root/core/src/test/resources/org/elasticsearch/index/mapper/multifield/merge/upgrade2.json
blob: 3cfca9c313e293ed8e5d863354df986f2cd96b53 (plain)
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
{
    person:{
        properties:{
            "name":{
                type:"string",
                index:"analyzed",
                store:"yes",
                "fields":{
                    "indexed":{
                        type:"string",
                        index:"analyzed"
                    },
                    "not_indexed":{
                        type:"string",
                        index:"no",
                        store:"yes"
                    },
                    "not_indexed2":{
                        type:"string",
                        index:"no",
                        store:"yes"
                    }
                }
            }
        }
    }
}