summaryrefslogtreecommitdiff
path: root/core/src/test/resources/org/elasticsearch/index/mapper/multifield/test-multi-field-type-no-default-field.json
blob: 99b74c016700428e01019e46a0e63b9516941ce8 (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
28
29
30
31
32
{
  "person": {
    "properties": {
      "name": {
        "type": "multi_field",
        "fields": {
          "indexed": {
            "type": "string",
            "index": "analyzed"
          },
          "not_indexed": {
            "type": "string",
            "index": "no",
            "store": "yes"
          }
        }
      },
      "age": {
        "type": "multi_field",
        "fields": {
          "not_stored": {
            "type": "long"
          },
          "stored": {
            "type": "long",
            "store": "yes"
          }
        }
      }
    }
  }
}