I’m trying to set a default value to a dynamic field where dict is true. This would be the example FieldSchema:
key: “attributes”,
dict: true,
default: {“Points”: “42”}
However, the default value type is string so the default gets set incorrectly where the keys become string indices and the values are the values at a given stringified JSON index.
Is it possible to set a default key-values to a dict field?