You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom fields attribute is a JSON object that contain any number of fields. Each field contains a nested object where key is the field type. Supported types are: string, number, date and boolean.
This structure make ElasticSearch mapping stable (same field name have always the same type).
Each field may also contain the key order which is used to order them in a list.
Custom fields attribute is a JSON object that contain any number of fields. Each field contains a nested object where key is the field type. Supported types are:
string
,number
,date
andboolean
.This structure make ElasticSearch mapping stable (same field name have always the same type).
Each field may also contain the key
order
which is used to order them in a list.Here is an example of valid custom fields:
Elastic4play accepts field with multiple types (e.g.
{ "otherField": { "boolean": true, "number": 1 } }
.The text was updated successfully, but these errors were encountered: