in hash-codec I want to add a nested mode,whereby a key in the schema can be an entire sub schema. The schema will be flattened out into a key on the parent layer. In this way I could have a schema of {name:string, hobbies: {favourite: string, list:[]}}
Which would collapse down to {name, hobbiesfavourite, hobbieslist} etc. the trick will be in how we encode arrays
in hash-codec I want to add a nested mode,whereby a key in the schema can be an entire sub schema. The schema will be flattened out into a key on the parent layer. In this way I could have a schema of {name:string, hobbies: {favourite: string, list:[]}}
Which would collapse down to {name, hobbiesfavourite, hobbieslist} etc. the trick will be in how we encode arrays