You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/modeling-guide.md
+34-1
Original file line number
Diff line number
Diff line change
@@ -418,7 +418,7 @@ An annotation allows distinguishing these properties from container variants:
418
418
419
419
For example:
420
420
421
-
```
421
+
```ts
422
422
/**
423
423
* @variants container
424
424
*/
@@ -435,6 +435,39 @@ class AggregationContainer {
435
435
...
436
436
```
437
437
438
+
#### Untagged
439
+
440
+
The untagged variant is used for unions that can only be distinguished by the type of one or more fields.
441
+
442
+
> [!WARNING]
443
+
> This variant should only be used for legacy types and should otherwise be avoided as far as possible, as it leads to less optimal code generation in the client libraries.
444
+
445
+
The syntax is:
446
+
447
+
```ts
448
+
/**@variants untagged */
449
+
```
450
+
451
+
Untagged variants must exactly follow a defined pattern.
In many places Elasticsearch accepts a property value to be either a complete data structure or a single value, that value being a shortcut for a property in the data structure.
0 commit comments