pub type RawTable = BTreeMap<String, RawValue>;Expand description
A map of dynamic-keyed raw subtrees (for example [ecosystems.<id>]).
Each subtree is kept as an un-deserialized RawValue so a downstream owner — a provider, plugin,
or adapter — can parse it later with its own #[serde(deny_unknown_fields)] schema.
The strict top-level document rejects unknown reserved keys while a RawTable field captures the open,
dynamic-keyed sections verbatim.
Aliased Type§
pub struct RawTable { /* private fields */ }