We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e487f commit 8029ae2Copy full SHA for 8029ae2
docs/reference/mapping/fields/meta-field.asciidoc
@@ -27,4 +27,20 @@ PUT my_index
27
<<indices-get-mapping,GET mapping>> API.
28
29
The `_meta` field can be updated on an existing type using the
30
-<<indices-put-mapping,PUT mapping>> API.
+<<indices-put-mapping,PUT mapping>> API:
31
+
32
+[source,js]
33
+--------------------------------------------------
34
+PUT my_index/_mapping/_doc
35
+{
36
+ "_meta": {
37
+ "class": "MyApp2::User3",
38
+ "version": {
39
+ "min": "1.3",
40
+ "max": "1.5"
41
+ }
42
43
+}
44
45
+// CONSOLE
46
+// TEST[continued]
0 commit comments