Json file format

I am creating an app related to my website. What should be format of json file , when i click on the title its url value should open.

1 Like

you can use online tools to create json file format, for example this website,

i entered raw data,
[tags,{title:first, web: www},{title:second, web:www}]

and got

[ 
   "tags",
   { 
      "title":"first",
      "web":"www"
   },
   { 
      "title":"second",
      "web":"www"
   }
]
1 Like