// 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: "indonesian_example", settings: { analysis: { filter: { indonesian_stop: { type: "stop", stopwords: "_indonesian_", }, indonesian_keywords: { type: "keyword_marker", keywords: ["contoh"], }, indonesian_stemmer: { type: "stemmer", language: "indonesian", }, }, analyzer: { rebuilt_indonesian: { tokenizer: "standard", filter: [ "lowercase", "indonesian_stop", "indonesian_keywords", "indonesian_stemmer", ], }, }, }, }, }); console.log(response); ----