PUT shop-orders-demo { "settings": { "analysis": { "analyzer": { "cz_text": { "type": "czech" } } } }, "mappings": { "properties": { "order_id": { "type": "keyword" }, "created_at": { "type": "date" }, "channel": { "type": "keyword" }, "currency": { "type": "keyword" }, "payment_method": { "type": "keyword" }, "order_status": { "type": "keyword" }, "shipping_method": { "type": "keyword" }, "subtotal_amount": { "type": "double" }, "discount_amount": { "type": "double" }, "shipping_fee": { "type": "double" }, "total_amount": { "type": "double" }, "customer": { "properties": { "id": { "type": "keyword" }, "name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } }, "analyzer": "cz_text" }, "loyalty_tier": { "type": "keyword" } } }, "delivery": { "properties": { "city": { "type": "keyword" }, "country_code": { "type": "keyword" }, "location": { "type": "geo_point" }, "days": { "type": "integer" } } }, "items": { "type": "nested", "properties": { "product_id": { "type": "keyword" }, "name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } }, "analyzer": "cz_text" }, "category": { "type": "keyword" }, "unit_price": { "type": "double" }, "quantity": { "type": "integer" } } }, "categories": { "type": "keyword" }, "tags": { "type": "keyword" }, "promotion_code": { "type": "keyword" }, "returned": { "type": "boolean" }, "rating": { "type": "float" }, "notes": { "type": "text", "analyzer": "cz_text", "fields": { "std": { "type": "text" } } } } } }