-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e78bb76
commit 27654a5
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[ | ||
{ | ||
"id": 1, | ||
"name": "State/Union Territory Name", | ||
"capital": "Capital City", | ||
"chief_minister": { | ||
"name": "Chief Minister's Name", | ||
"party": "Ruling Party", | ||
"tenure_start": "Start Year of Tenure", | ||
"contact": { | ||
"office_address": "Chief Minister's Office Address", | ||
"email": "Chief Minister's Email", | ||
"phone": "Chief Minister's Phone Number" | ||
} | ||
}, | ||
"ruling_party": "Ruling Party", | ||
"language": ["Official Language(s)"], | ||
"area": "Area in Square Kilometers", | ||
"history": "Brief History or Significant Events", | ||
"dishes": [ | ||
{ | ||
"name": "Dish Name", | ||
"type": "Type of Dish (veg/non-veg)", | ||
"description": "Description of Dish" | ||
}, | ||
"...": "More dishes" | ||
], | ||
"tourist_places": [ | ||
{ | ||
"name": "Tourist Place Name", | ||
"location": "Location of Tourist Place", | ||
"google_maps_link": "Google Maps Link", | ||
"rating": "Rating (if applicable)", | ||
"history": "Brief History or Description of Tourist Place" | ||
}, | ||
"...": "More tourist places" | ||
], | ||
"airports": [ | ||
{ | ||
"name": "Airport Name", | ||
"location": "Location of Airport", | ||
"google_maps_link": "Google Maps Link", | ||
"type": "Type of Airport" | ||
}, | ||
"...": "More airports" | ||
] | ||
} | ||
] |