Merge pull request #14738 from petmit/patch-1
Update error in documentation for multi-fields
This commit is contained in:
parent
d2ffcba890
commit
728cc5137a
|
@ -83,8 +83,7 @@ PUT my_index
|
||||||
"my_type": {
|
"my_type": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"text": { <1>
|
"text": { <1>
|
||||||
"type": "string"
|
"type": "string",
|
||||||
},
|
|
||||||
"fields": {
|
"fields": {
|
||||||
"english": { <2>
|
"english": { <2>
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -95,6 +94,7 @@ PUT my_index
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
PUT my_index/my_type/1
|
PUT my_index/my_type/1
|
||||||
{ "text": "quick brown fox" } <3>
|
{ "text": "quick brown fox" } <3>
|
||||||
|
|
Loading…
Reference in New Issue