Request/API to display detailed view of elasticsearch index field options

I have defined datatype and set the following options for some of the fields of an index

"doc_values": true
"enabled ": false
"index": false

Even though data is getting indexed and some of the set options can be viewed through kibana, using GET request on index, the options like

"doc_values": true
"enabled ": false
"index": false

that I set on various fields are not shown.

What is the Request/API command to view those options also that is already set on index fields?

regards
shini

You probably want GET /INDEXNAME/_mapping.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.