Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 358 Bytes

0246f73cc2ed3dfec577119e8cd15404.asciidoc

File metadata and controls

19 lines (18 loc) · 358 Bytes
resp = client.indices.put_mapping(
    index="my-index-000001",
    properties={
        "name": {
            "properties": {
                "last": {
                    "type": "text"
                }
            }
        }
    },
)
print(resp)