// 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: "finnish_example", settings: { analysis: { filter: { finnish_stop: { type: "stop", stopwords: "_finnish_", }, finnish_keywords: { type: "keyword_marker", keywords: ["esimerkki"], }, finnish_stemmer: { type: "stemmer", language: "finnish", }, }, analyzer: { rebuilt_finnish: { tokenizer: "standard", filter: [ "lowercase", "finnish_stop", "finnish_keywords", "finnish_stemmer", ], }, }, }, }, }); console.log(response); ----