設(shè)置ES字段的默認(rèn)類型:
```
PUT _template/xt
{
? ? "order": 11,
? ? "index_patterns": [
? ? ? "xt-*"
? ? ],
? ? "mappings": {
? ? ? "_default_": {
? ? ? ? "properties": {
? ? ? ? ? "firstLevelData": {
? ? ? ? ? ? "properties": {
? ? ? ? ? ? "location2": {
? ? ? ? ? ? ? "type": "geo_point"
? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? }
? ? ? ? }
? ? ? }
? ? }
}
```