Hi,
I have in issue with kibana. So, when created mapping with keywords - which is by default not_analyzed
it's not showing in kibana.
Please see below:
{
"affiliate-mapped-data-20170105": {
"mappings": {
"external": {
"dynamic_templates": [
{
"strings": {
"match_mapping_type": "string",
"mapping": {
"index": "not_analyzed",
"type": "string"
}
}
}
],
"properties": {
"AffiliateColor": {
"type": "keyword"
},
"AffiliateNetwork": {
"type": "text"
},
"BrandName": {
"type": "keyword"
},
"ColorHexCode": {
"type": "keyword"
},
"ColorName": {
"type": "keyword"
},
"Country": {
"type": "keyword"
},
"Currency": {
"type": "keyword"
},
"DateOfImport": {
"type": "date",
"format": "strict_date_optional_time"
},
"Description": {
"type": "keyword",
"index": false
},
"GarmentType": {
"type": "keyword"
},
"GarmentTypeId": {
"type": "keyword"
},
"Gender": {
"type": "keyword"
},
"IsAccessoryItem": {
"type": "long"
},
"IsOnSale": {
"type": "boolean"
},
"Keywords": {
"type": "keyword"
},
"Price": {
"type": "float"
},
"ProductImageUrl": {
"type": "keyword"
},
"ProductName": {
"type": "keyword"
},
"ProductPageUrl": {
"type": "text"
},
"ProductType": {
"type": "keyword"
},
"RegionSize": {
"type": "keyword"
},
"Shop": {
"type": "keyword"
},
"Size": {
"type": "keyword"
}
}
}
}
}
}