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
|
// This file is autogenerated, DO NOT EDIT
// search/search-vector-tile-api.asciidoc:671
[source, python]
----
resp = client.indices.create(
index="museums",
mappings={
"properties": {
"location": {
"type": "geo_point"
},
"name": {
"type": "keyword"
},
"price": {
"type": "long"
},
"included": {
"type": "boolean"
}
}
},
)
print(resp)
resp1 = client.bulk(
index="museums",
refresh=True,
operations=[
{
"index": {
"_id": "1"
}
},
{
"location": "POINT (4.912350 52.374081)",
"name": "NEMO Science Museum",
"price": 1750,
"included": True
},
{
"index": {
"_id": "2"
}
},
{
"location": "POINT (4.901618 52.369219)",
"name": "Museum Het Rembrandthuis",
"price": 1500,
"included": False
},
{
"index": {
"_id": "3"
}
},
{
"location": "POINT (4.914722 52.371667)",
"name": "Nederlands Scheepvaartmuseum",
"price": 1650,
"included": True
},
{
"index": {
"_id": "4"
}
},
{
"location": "POINT (4.914722 52.371667)",
"name": "Amsterdam Centre for Architecture",
"price": 0,
"included": True
}
],
)
print(resp1)
----
|