What I have in my Schema.avdl:
array<string> names = null;
Now instead of null, I want to have the default value as an empty array, so i tried and failed:
array<string> names = []; and array<string> names = {};
Can someone show me how to put an empty list as the default value ?
Thank you.