Guest User

Untitled

a guest
May 7th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     mappings: {
  3.         my_index: {
  4.             properties: {
  5.                 query: {
  6.                     dynamic: true
  7.                     properties: {
  8.                         term: {
  9.                             dynamic: true
  10.                             properties: {
  11.                                 sourceURLDomain: {
  12.                                     type: string
  13.                                 }
  14.                             }
  15.                         }
  16.                     }
  17.                 }
  18.                 sourceURLDomain: {
  19.                     include_in_all: false
  20.                     index: not_analyzed
  21.                     omit_norms: true
  22.                     index_options: docs
  23.                     type: string
  24.                 }
  25.                 term: {
  26.                     dynamic: true
  27.                     properties: {
  28.                         sourceURLDomain: {
  29.                             type: string
  30.                         }
  31.                     }
  32.                 }
  33.             }
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment