aboutsummaryrefslogtreecommitdiffstats
path: root/extra/elasticsearch/file_schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'extra/elasticsearch/file_schema.json')
-rw-r--r--extra/elasticsearch/file_schema.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/extra/elasticsearch/file_schema.json b/extra/elasticsearch/file_schema.json
new file mode 100644
index 00000000..66d81e0b
--- /dev/null
+++ b/extra/elasticsearch/file_schema.json
@@ -0,0 +1,46 @@
+{
+"settings": {
+ "index": {
+ "analysis": {
+ "analyzer": {
+ "default": {
+ "type": "custom",
+ "tokenizer": "standard",
+ "filter": [ "lowercase", "asciifolding" ]
+ }
+ }
+ }
+ }
+},
+"mappings": {
+ "changelog": {
+ "properties": {
+ "ident": { "type": "keyword", "doc_values": false },
+ "state": { "type": "keyword" },
+ "revision": { "type": "keyword", "doc_values": false },
+
+ "release_ids": { "type": "keyword", "doc_values": false },
+ "release_count": { "type": "integer" },
+ "mimetype": { "type": "keyword" },
+ "size_bytes": { "type": "integer" },
+ "sha1": { "type": "keyword", "doc_values": false },
+ "sha256": { "type": "keyword", "doc_values": false },
+ "md5": { "type": "keyword", "doc_values": false },
+
+ "domains": { "type": "keyword" },
+ "hosts": { "type": "keyword" },
+ "rels": { "type": "keyword" },
+ "in_ia": { "type": "boolean" },
+
+ "release_id": { "type": "alias", "path": "release_ids" },
+ "sha1hex": { "type": "alias", "path": "sha1hex" },
+ "sha256hex": { "type": "alias", "path": "sha256hex" },
+ "md5hex": { "type": "alias", "path": "md5hex" },
+ "size": { "type": "alias", "path": "size_bytes" },
+ "domain": { "type": "alias", "path": "domains" },
+ "host": { "type": "alias", "path": "host" },
+ "rel": { "type": "alias", "path": "rel" }
+ }
+ }
+}
+}