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
| { "took": 1, "timed_out": false, "_shards": { "total": 10, "successful": 10, "failed": 0 }, "hits": { "total": 5, "max_score": 1, "hits": [{ "_index": "website", "_type": "blog", "_id": "123", "_score": 1, "_source": { "title": "My first blog entry", "text": "Just trying this out...", "date": "2014/01/01" } }, { "_index": "website", "_type": "blog", "_id": "AVbkih8AltSLRRB7XAun", "_score": 1, "_source": { "title": "TestTitle", "text": "text", "date": "2016/09/01" } }, { "_index": "website", "_type": "blog", "_id": "AVbf1AtSyvALLDk8cjpY", "_score": 1, "_source": { "title": "My 3 blog entry", "text": "Still trying this out...", "date": "2014/01/01" } }, { "_index": "aaa", "_type": "aaa", "_id": "AVcCopjQzgrwoUDkEMu3", "_score": 1, "_source": { "str1": "hello", "str2": "world" } }, { "_index": "aaa", "_type": "aaa", "_id": "AVcCogrMzgrwoUDkEMu2", "_score": 1, "_source": { "str1": "hello, world!", "str2": "goodbye! world" } } ] } }
|