type
PluginField
type PluginField struct {
Key string `json:"key"`
Config json.RawMessage `json:"config"`
ReferenceKeys []string `json:"referenceKeys,omitempty"`
}One plugin field key, public JSON config, and declared reference keys.
Keystring- The Key value.
Configjson.RawMessage- The Config value.
ReferenceKeys[]string- The ReferenceKeys value.