type

EmbeddedTree

EmbeddedTree locates a structural node or node list through literal properties. Only Children is recursively traversed; case payloads use ordinary schemas.

Properties

PropertyTypeDescription
Versionuint32The Version value.
KeystringThe Key value.
Root[]stringThe Root value.
ChildrenstringThe Children value.
TagstringThe Tag value.
Cases[]EmbeddedTreeCaseThe 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"` }

Source schema/embedded.go:16