| { | |
| "mappings": { | |
| "properties": { | |
| "title": { | |
| "type": "text", | |
| "analyzer": "standard", | |
| "fields": { | |
| "keyword": { | |
| "type": "keyword", | |
| "ignore_above": 256 | |
| } | |
| } | |
| }, | |
| "description": { | |
| "type": "text" | |
| }, | |
| "price": { | |
| "type": "float" | |
| }, | |
| "created_at": { | |
| "type": "date", | |
| "format": "strict_date_optional_time||epoch_millis" | |
| }, | |
| "is_available": { | |
| "type": "boolean" | |
| }, | |
| "category_id": { | |
| "type": "integer" | |
| }, | |
| "tags": { | |
| "type": "keyword" | |
| } | |
| } | |
| }, | |
| "settings": { | |
| "number_of_shards": 1, | |
| "number_of_replicas": 1 | |
| } | |
| } |