resp = client.indices.put_mapping(
index="my-index-000001",
properties={
"name": {
"properties": {
"last": {
"type": "text"
}
}
}
},
)
print(resp)