From 8aea4e04ab45707b899892a0b4f4beb3e5fe8f65 Mon Sep 17 00:00:00 2001 From: Ekwinder Date: Wed, 29 Jan 2025 18:54:40 +0530 Subject: [PATCH] [DOCS] Update getting-started.asciidoc (#116151) Update `new_field` to `language` which is the actual new field added in dynamic mapping --- docs/reference/quickstart/getting-started.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/quickstart/getting-started.asciidoc b/docs/reference/quickstart/getting-started.asciidoc index 03bfb62548b25..192b70c11c635 100644 --- a/docs/reference/quickstart/getting-started.asciidoc +++ b/docs/reference/quickstart/getting-started.asciidoc @@ -293,7 +293,7 @@ POST /books/_doc // TEST[continued] <1> The new field. -View the mapping for the `books` index with the <>. The new field `new_field` has been added to the mapping with a `text` data type. +View the mapping for the `books` index with the <>. The new field `language` has been added to the mapping with a `text` data type. [source,console] ---- @@ -328,7 +328,7 @@ GET /books/_mapping } } }, - "new_field": { + "language": { "type": "text", "fields": { "keyword": {