Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.09 KB | None | 0 0
  1. {
  2.   "bank": {
  3.     "mappings": {
  4.       "couchbaseCheckpoint": {
  5.         "_source": {
  6.           "includes": [
  7.             "meta.*",
  8.             "doc.*"
  9.           ]
  10.         },
  11.         "dynamic_templates": [
  12.           {
  13.             "store_no_index": {
  14.               "match": "*",
  15.               "mapping": {
  16.                 "include_in_all": false,
  17.                 "index": "no",
  18.                 "store": "no"
  19.               }
  20.             }
  21.           }
  22.         ],
  23.         "properties": {
  24.           "meta": {
  25.             "type": "object",
  26.             "include_in_all": false
  27.           }
  28.         }
  29.       },
  30.       "_default_": {
  31.         "_source": {
  32.           "includes": [
  33.             "meta.*"
  34.           ]
  35.         },
  36.         "properties": {
  37.           "meta": {
  38.             "type": "object",
  39.             "include_in_all": false
  40.           }
  41.         }
  42.       },
  43.       "account": {
  44.         "_source": {
  45.           "includes": [
  46.             "meta.*"
  47.           ]
  48.         },
  49.         "properties": {
  50.           "account_number": {
  51.             "type": "long"
  52.           },
  53.           "address": {
  54.             "type": "text",
  55.             "fields": {
  56.               "keyword": {
  57.                 "type": "keyword",
  58.                 "ignore_above": 256
  59.               }
  60.             }
  61.           },
  62.           "age": {
  63.             "type": "long"
  64.           },
  65.           "balance": {
  66.             "type": "long"
  67.           },
  68.           "city": {
  69.             "type": "text",
  70.             "fields": {
  71.               "keyword": {
  72.                 "type": "keyword",
  73.                 "ignore_above": 256
  74.               }
  75.             }
  76.           },
  77.           "email": {
  78.             "type": "text",
  79.             "fields": {
  80.               "keyword": {
  81.                 "type": "keyword",
  82.                 "ignore_above": 256
  83.               }
  84.             }
  85.           },
  86.           "employer": {
  87.             "type": "text",
  88.             "fields": {
  89.               "keyword": {
  90.                 "type": "keyword",
  91.                 "ignore_above": 256
  92.               }
  93.             }
  94.           },
  95.           "firstname": {
  96.             "type": "text",
  97.             "fields": {
  98.               "keyword": {
  99.                 "type": "keyword",
  100.                 "ignore_above": 256
  101.               }
  102.             }
  103.           },
  104.           "gender": {
  105.             "type": "text",
  106.             "fields": {
  107.               "keyword": {
  108.                 "type": "keyword",
  109.                 "ignore_above": 256
  110.               }
  111.             }
  112.           },
  113.           "lastname": {
  114.             "type": "text",
  115.             "fields": {
  116.               "keyword": {
  117.                 "type": "keyword",
  118.                 "ignore_above": 256
  119.               }
  120.             }
  121.           },
  122.           "meta": {
  123.             "type": "object",
  124.             "include_in_all": false
  125.           },
  126.           "state": {
  127.             "type": "text",
  128.             "fields": {
  129.               "keyword": {
  130.                 "type": "keyword",
  131.                 "ignore_above": 256
  132.               }
  133.             }
  134.           }
  135.         }
  136.       }
  137.     }
  138.   }
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement