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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
   | {   "took" : 3,   "timed_out" : false,   "_shards" : {     "total" : 1,     "successful" : 1,     "skipped" : 0,     "failed" : 0   },   "hits" : {     "total" : {       "value" : 1,       "relation" : "eq"     },     "max_score" : 0.6931471,     "hits" : [       {         "_shard" : "[analyzer_test][0]",         "_node" : "0lmKyQR9SQ-uYLPan-8BZw",         "_index" : "analyzer_test",         "_type" : "_doc",         "_id" : "DAlf5n0BeiHXdjTuK4R7",         "_score" : 0.6931471,         "_source" : {           "description" : "Hey that dog!"         },         "_explanation" : {           "value" : 0.6931471,           "description" : "weight(description:dog in 0) [PerFieldSimilarity], result of:",           "details" : [             {               "value" : 0.6931471,               "description" : "score(freq=1.0), computed as boost * idf * tf from:",               "details" : [                 {                   "value" : 2.2,                   "description" : "boost",                   "details" : [ ]                 },                 {                   "value" : 0.6931472,                   "description" : "idf, computed as log(1 + (N - n + 0.5) / (n + 0.5)) from:",                   "details" : [                     {                       "value" : 1,                       "description" : "n, number of documents containing term",                       "details" : [ ]                     },                     {                       "value" : 2,                       "description" : "N, total number of documents with field",                       "details" : [ ]                     }                   ]                 },                 {                   "value" : 0.45454544,                   "description" : "tf, computed as freq / (freq + k1 * (1 - b + b * dl / avgdl)) from:",                   "details" : [                     {                       "value" : 1.0,                       "description" : "freq, occurrences of term within document",                       "details" : [ ]                     },                     {                       "value" : 1.2,                       "description" : "k1, term saturation parameter",                       "details" : [ ]                     },                     {                       "value" : 0.75,                       "description" : "b, length normalization parameter",                       "details" : [ ]                     },                     {                       "value" : 3.0,                       "description" : "dl, length of field",                       "details" : [ ]                     },                     {                       "value" : 3.0,                       "description" : "avgdl, average length of field",                       "details" : [ ]                     }                   ]                 }               ]             }           ]         }       }     ]   } }
  |