Skip to content

Commit 61594da

Browse files
authored
Fix example in keyword.md (#129056)
9.x version of #129053
1 parent 405b78f commit 61594da

File tree

1 file changed

+2
-2
lines changed
  • docs/reference/elasticsearch/mapping-reference

1 file changed

+2
-2
lines changed

docs/reference/elasticsearch/mapping-reference/keyword.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,14 +295,14 @@ It is both allowed to submit documents that don’t have a value for the field o
295295
```console
296296
POST logs-debug/_doc
297297
{
298-
"date": "2019-12-12",
298+
"@timestamp": "2019-12-12",
299299
"message": "Starting up Elasticsearch",
300300
"level": "debug"
301301
}
302302

303303
POST logs-debug/_doc
304304
{
305-
"date": "2019-12-12",
305+
"@timestamp": "2019-12-12",
306306
"message": "Starting up Elasticsearch"
307307
}
308308
```

0 commit comments

Comments
 (0)