From 7b4425b096fa8c18d0db9fd9b1ae96d63ee8af55 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Mon, 1 Feb 2016 20:18:59 +0100 Subject: first kinda working version --- data/elasticsearch-mapping.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 data/elasticsearch-mapping.json (limited to 'data') diff --git a/data/elasticsearch-mapping.json b/data/elasticsearch-mapping.json new file mode 100644 index 0000000..ec9bcc9 --- /dev/null +++ b/data/elasticsearch-mapping.json @@ -0,0 +1,40 @@ +{ + "mappings": { + "document": { + "properties": { + "status": { + "type": "string", + "index": "not_analyzed" + }, + "type": { + "type": "string", + "index": "not_analyzed" + }, + "subtype": { + "type": "string", + "index": "not_analyzed" + }, + "mimetype": { + "type": "string", + "index": "not_analyzed" + }, + "url": { + "type": "string", + "index": "not_analyzed" + }, + "domain": { + "type": "string", + "index": "not_analyzed" + }, + "source": { + "type": "string", + "index": "not_analyzed" + }, + "language": { + "type": "string", + "index": "not_analyzed" + } + } + } + } +} -- cgit v1.2.3