This is not the correct form of writing JSON files.
The right format is as follows:
String
{"name":"name"}
Integer
{"number":123344}
Multiple entry as in your case:
{"name":"Jino","age":22,"subject":"AWS"}
Creating database:
{"employees":[
{ "firstName":"John", "lastName":"Doe" },
{ "firstName":"Anna", "lastName":"Smith" }]
}