Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/elasticsearch/mapping-reference/object.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ JSON documents are hierarchical in nature: the document may contain inner object

```console
PUT my-index-000001/_doc/1
{ <1>
{ # The outer document is also a JSON object.
"region": "US",
"manager": { <2>
"age": 30,
Expand All @@ -23,7 +23,7 @@ PUT my-index-000001/_doc/1
}
```

1. The outer document is also a JSON object.

2. It contains an inner object called `manager`.
3. Which in turn contains an inner object called `name`.

Expand Down
Loading