diff options
Diffstat (limited to 'extra/elasticsearch/auto_mapping.json')
-rw-r--r-- | extra/elasticsearch/auto_mapping.json | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/extra/elasticsearch/auto_mapping.json b/extra/elasticsearch/auto_mapping.json new file mode 100644 index 0000000..72b43d7 --- /dev/null +++ b/extra/elasticsearch/auto_mapping.json @@ -0,0 +1,95 @@ +{ + "ref": { + "mappings": { + "properties": { + "match_provenance": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "match_reason": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "match_status": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "ref_index": { + "type": "long" + }, + "ref_key": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "source_release_ident": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "source_work_ident": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "source_year": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "target_release_ident": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "target_work_ident": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "update_ts": { + "type": "long" + } + } + } + } +} |