Browse Source

[DOCS] Updated target_field description of the json ingest processor (#61968)

Co-authored-by: Dan Hermann <danhermann@users.noreply.github.com>
Jakob Reiter 5 years ago
parent
commit
534b179c33
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/reference/ingest/processors/json.asciidoc

+ 2 - 2
docs/reference/ingest/processors/json.asciidoc

@@ -11,8 +11,8 @@ Converts a JSON string into a structured JSON object.
 [options="header"]
 |======
 | Name           | Required  | Default  | Description
-| `field`        | yes       | -        | The field to be parsed
-| `target_field` | no        | `field`  | The field to insert the converted structured object into
+| `field`        | yes       | -        | The field to be parsed.
+| `target_field` | no        | `field`  | The field that the converted structured object will be written into. Any existing content in this field will be overwritten.
 | `add_to_root`  | no        | false    | Flag that forces the serialized json to be injected into the top level of the document. `target_field` must not be set when this option is chosen.
 include::common-options.asciidoc[]
 |======