
Hello,
I have a very simple schema
{
"parent": "string" {
"children" [
{ "childid": "string" },
{ "childvalue": "string" }
]
}
}
And the data does have all of this filled in, but in my schema for Parse JSON I removed the childid as i dont need it, as well as several other fields. Nothing is marked required,
I do not understand why the Parse JSON, populates attributes that I do not have in my schema? I am unable to "removeProperty" because childid is part of children, which is an array, so it turns into this messy parsing process with replace, sub, string, concat etc.
Is there a way to forcibly block Parse JSON from adding in stuff I specifically do not have in the schema assigned to Parse JSON?
Thanks!!