Skip to content

Instantly share code, notes, and snippets.

@robynitp
Last active June 6, 2021 15:06
Show Gist options
  • Save robynitp/3ee8f3708d86dcde2e61 to your computer and use it in GitHub Desktop.
Save robynitp/3ee8f3708d86dcde2e61 to your computer and use it in GitHub Desktop.
Movie JSON example

Publish some JSON data of your own by forking this gist. Delete my example data and add your own. It can be anything: a list of your favorite songs, statistics on global warming, the number of steps you took in a day. It should be in valid JSON. Use JSON Editor Online to check if your JSON is valid.

For an additional JSON example see this gist with weather data as well as the example files in the JSON folder for week 2.

{
"Instructions": "delete everything in this object and make your own JSON object using different data.",
"Title": "The Graduate",
"Year": "1967",
"Rated": "Approved",
"Released": "22 Dec 1967",
"Runtime": "106 min",
"Genre": [
"Comedy",
"Drama",
"Romance"
],
"Director": "Mike Nichols",
"Writers": [
"Calder Willingham (screenplay)",
"Buck Henry (screenplay)",
"Charles Webb (based on the novel by)"
],
"Actors": [
"Anne Bancroft",
"Dustin Hoffman",
"Katharine Ross",
"William Daniels"
],
"Plot": "Ben has recently graduated college, with his parents now expecting great things from him. At his \"Homecoming\" party, Mrs. Robinson, the wife of his father's business partner, has Ben drive her home, which leads to an affair between the two. The affair eventually ends, but comes back to haunt him when he finds himself falling for Elaine, Mrs. Robinson's daughter.",
"Language": "English",
"Country": "USA",
"Awards": "Won 1 Oscar. Another 22 wins & 13 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMTQ0ODc4MDk4Nl5BMl5BanBnXkFtZTcwMTEzNzgzNA@@._V1_SX300.jpg",
"imdbRating": "8.1",
"imdbVotes": "183,131",
"imdbID": "tt0061722"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment