Files
elasticsearch-js/docs/doc_examples/941c8d05486200e835d97642e4ee05d5.asciidoc
github-actions[bot] b4eb8e5441 [Backport 8.15] Added/updated snippets for docs (#2319)
(cherry picked from commit f737290d10)

Co-authored-by: Josh Mock <joshua.mock@elastic.co>
2024-07-29 17:10:42 -05:00

41 lines
894 B
Plaintext

// 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: "my-index-000001",
mappings: {
properties: {
text: {
type: "text",
term_vector: "with_positions_offsets_payloads",
store: true,
analyzer: "fulltext_analyzer",
},
fullname: {
type: "text",
term_vector: "with_positions_offsets_payloads",
analyzer: "fulltext_analyzer",
},
},
},
settings: {
index: {
number_of_shards: 1,
number_of_replicas: 0,
},
analysis: {
analyzer: {
fulltext_analyzer: {
type: "custom",
tokenizer: "whitespace",
filter: ["lowercase", "type_as_payload"],
},
},
},
},
});
console.log(response);
----