aboutsummaryrefslogtreecommitdiff
path: root/data/elasticsearch-mapping.json
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2016-02-01 20:18:59 +0100
committerChristian Weiske <cweiske@cweiske.de>2016-02-01 20:18:59 +0100
commit7b4425b096fa8c18d0db9fd9b1ae96d63ee8af55 (patch)
tree2dc5d998a1fd0238592b451ff88b5c4cec064f9b /data/elasticsearch-mapping.json
downloadphinde-7b4425b096fa8c18d0db9fd9b1ae96d63ee8af55.tar.gz
phinde-7b4425b096fa8c18d0db9fd9b1ae96d63ee8af55.zip
first kinda working version
Diffstat (limited to 'data/elasticsearch-mapping.json')
-rw-r--r--data/elasticsearch-mapping.json40
1 files changed, 40 insertions, 0 deletions
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"
+ }
+ }
+ }
+ }
+}