Hi Everyone,
I have a json structure like below.
'ha': StringType(),
'confirmations': LongType(),
'previousha': StringType(),
'nextha': StringType(),
'ax': [{
'axid': StringType(),
'ha': StringType(),
'ex': StringType(),
'win': [{
'axid': StringType(),
'Sig': {'as': StringType(),'ex': StringType(),'seq': LongType()},
'sequence':LongType(),
}],
'wout': [{
'value': DoubleType(),'n': LongType(),
'Pub': {
'type': StringType(),
'addresses': [StringType()]}
}]}]}
i want to parse above json structure and want to create nodes for each addresses element and for each 'ax' element.
please help me into this