type
EmbeddedTree
EmbeddedTree locates a structural node or node list through literal properties. Only Children is recursively traversed; case payloads use ordinary schemas.
Properties
| Property | Type | Description |
|---|---|---|
Version | uint32 | The Version value. |
Key | string | The Key value. |
Root | []string | The Root value. |
Children | string | The Children value. |
Tag | string | The Tag value. |
Cases | []EmbeddedTreeCase | The Cases value. |
Full signature
type EmbeddedTree struct {
Version uint32 `json:"version"`
Key string `json:"key"`
Root []string `json:"root"`
Children string `json:"children"`
Tag string `json:"tag"`
Cases []EmbeddedTreeCase `json:"cases"`
}