Lets say i have an array of json objects.
{ firstName: John, Children: ["Maria","Alfred"], married: false }
{ firstName: George, Children: ['**zoekerbergen alfonso the second**','Harvey'], married: false }
{ firstName: Hary, Children: ["Sam","Obama"], married: false }
The pattern is that usually the children are an array of small one word names.
Zoekerbergen alfonso the second is however an anomaly.
Is there someway to learn a pattern of an object then detect anomalies such as those or other such as a person having 1000 children.
Basic pattern learning and detecting various anomalies.
Thank you.