I have been working with a nested JSON file as given below. I want to write this JSON to a firestore document using node.js.
{
"title":"Sample tittle",
"icon":{
"type":"url/base64",
"url":"http://www.sample.com/icon.png"
},
"steps":{
"step1":{
"type":"play",
"url":"http://www.sample.com/"},
"step2":{
"type":"ask",
"url":"http://www.sample.com/ab14",
"Opts":["yes", "no"],
"next":[
{
"id":"step1",
"answer":"yes"
},
{
"id":"step3",
"answer":"no"
}
]
},
"step3":{
"type":"play",
"url":"http://www.sample.com/ase"}
}
}