I'm building a JSON
file where I want to add multiple lines, as shown in the code sampled below:
[
{
"Numero":"0001",
"Textos":[
{
"letra":"Meu Jesus maravilhoso és,
minha inspiração a prosseguir,
e mesmo quando tudo não vai bem
eu continuo olhando para ti...",
"titulo":"Aos pés da cruz"
}
]
}
]
However, in doing so, I always receive the invalid character message.
As I researched, JSON
does not support the multi-line feature. Is there anyway to create the model reported in the above code?