I'm new to solr. Can someone explain what the delimited_payload_string field type is?
For example, can I store the following JSON object as a multi-valued delimited_payload_string?
"classifications": [
{"code": "RESTAURANT", "names": [{"nameLocale": "en-US", "name": "restaurant"}, {"nameLocale": "en-US", "name": "fast food"}]}
]
A delimited payload string is for attaching a payload to a specific field - a payload is an additional value that isn't visible in the document, but can be used by custom plugins. From Solr Payloads
In your case you probably want to flatten the document before indexing and indexing the value as separate tags, depending on what you want to do with the data.