hi,
i have a json input that contains list of values that may repeat and i would like to parse it and build a list of unique keys. simple text , one key per row.
i don’t success to do it. can someone assist
this is a sample input:
{“result”:
[{“ident”:“key1”},{“ident”:“key1”},{“ident”:“key2”},{“ident”:“key3”},{“ident”:“key1”},{“ident”:“key3”},{“ident”:“key2”},{“ident”:“key1”},{“ident”:“key3”}],
“next_key”:1707052288}
the final result should be (order is not important):
key1
key2
key3