// 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: "lithuanian_example", settings: { analysis: { filter: { lithuanian_stop: { type: "stop", stopwords: "_lithuanian_", }, lithuanian_keywords: { type: "keyword_marker", keywords: ["pavyzdys"], }, lithuanian_stemmer: { type: "stemmer", language: "lithuanian", }, }, analyzer: { rebuilt_lithuanian: { tokenizer: "standard", filter: [ "lowercase", "lithuanian_stop", "lithuanian_keywords", "lithuanian_stemmer", ], }, }, }, }, }); console.log(response); ----