Let the platform do the work

/Administration/elasticsearch/mapping GET

Overview

[ADMIN] Elasticsearch mapping

Summary

This endpoint returns the mapping for every available index. This endpoint is only available to administrators.

Response

{
    "autobr2583_shared":{
        "KBDocuments":{
            "dynamic":"false",
            "_all":{
                "enabled":false
            },
            "properties":{
                "kbdocument_name":{
                    "type":"string",
                    "index":"not_analyzed",
                    "fields":{
                        "gs_string_default":{
                            "type":"string",
                            "analyzer":"gs_analyzer_default"
                        },
                        "gs_string_ngram":{
                            "type":"string",
                            "index_analyzer":"gs_analyzer_ngram",
                            "search_analyzer":"gs_analyzer_default"
                        }
                    }
                }
            }
        },
        "RevenueLineItems":{
            "dynamic":"false",
            "_all":{
                "enabled":false
            },
            "properties":{
                "date_modified":{
                    "type":"string",
                    "index":"not_analyzed",
                    "fields":{
                        "gs_datetime":{
                            "type":"date",
                            "index":"no",
                            "format":"YYYY-MM-dd HH:mm:ss"
                        }
                    }
                },
                "description":{
                    "type":"string",
                    "index":"not_analyzed",
                    "fields":{
                        "gs_string_default":{
                            "type":"string",
                            "analyzer":"gs_analyzer_default"
                        },
                        "gs_string_ngram":{
                            "type":"string",
                            "index_analyzer":"gs_analyzer_ngram",
                            "search_analyzer":"gs_analyzer_default"
                        }
                    }
                }
            }
        }
    }
}

Change Log

Version Change
v10 Added /Administration/elasticsearch/mapping GET endpoint.

Topics