// This file is autogenerated, DO NOT EDIT // Use `node scripts/generate-docs-examples.js` to generate the docs examples [source, js] ---- const response = await client.indices.create({ index: "hungarian_example", settings: { analysis: { filter: { hungarian_stop: { type: "stop", stopwords: "_hungarian_", }, hungarian_keywords: { type: "keyword_marker", keywords: ["példa"], }, hungarian_stemmer: { type: "stemmer", language: "hungarian", }, }, analyzer: { rebuilt_hungarian: { tokenizer: "standard", filter: [ "lowercase", "hungarian_stop", "hungarian_keywords", "hungarian_stemmer", ], }, }, }, }, }); console.log(response); ----