Advertisement
Guest User

Untitled

a guest
Oct 27th, 2022
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.85 KB | Source Code | 0 0
  1. {
  2.     "aliases": {},
  3.     "mappings": {
  4.         "properties": {
  5.             "status": {
  6.                 "type": "text",
  7.                 "fields": {
  8.                     "keyword": {
  9.                         "type": "keyword",
  10.                         "ignore_above": 256,
  11.                         "index": false
  12.                     }
  13.                 },
  14.                 "index": false
  15.             },
  16.             "created_at": {
  17.                 "type": "date",
  18.                 "index": false
  19.             },
  20.             "emails": {
  21.                 "properties": {
  22.                     "email": {
  23.                         "type": "text",
  24.                         "fields": {
  25.                             "keyword": {
  26.                                 "type": "keyword",
  27.                                 "ignore_above": 256
  28.                             }
  29.                         }
  30.                     }
  31.                 },
  32.                 "enabled": false
  33.             },
  34.             "long_12": {
  35.                 "type": "long",
  36.                 "index": false
  37.             },
  38.             "division": {
  39.                 "type": "nested",
  40.                 "properties": {
  41.                     "prop_1": {
  42.                         "type": "long",
  43.                         "index": false
  44.                     },
  45.                     "prop_2": {
  46.                         "type": "boolean",
  47.                         "index": false
  48.                     },
  49.                     "currency": {
  50.                         "type": "text",
  51.                         "fields": {
  52.                             "keyword": {
  53.                                 "type": "keyword",
  54.                                 "ignore_above": 256
  55.                             }
  56.                         }
  57.                     }
  58.                 },
  59.                 "enabled": false
  60.             }
  61.         }
  62.     }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement