Skip to content

Instantly share code, notes, and snippets.

@nipundavid
Created May 19, 2018 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nipundavid/720f23c2912704d909956f135d4eaede to your computer and use it in GitHub Desktop.
Save nipundavid/720f23c2912704d909956f135d4eaede to your computer and use it in GitHub Desktop.
Sample json file to test basic CURD operations
{
"marvel": [
{
"id": 1,
"superhero_name": "Deadpool",
"real_name": "Wade Wilson",
"powers": "Deadpool possesses a superhuman healing factor derived from that of the mutant Wolverine that allows him to regenerate damaged or destroyed areas of his cellular structure"
},
{
"id": 2,
"superhero_name": "Hulk",
"real_name": "Robert Bruce Banner",
"powers": "His capacity for physical strength is potentially limitless due to the fact that the Hulk's strength increases proportionally with his level of great emotional stress, anger in particular."
},
{
"id": 3,
"superhero_name": "Daredevil",
"real_name": "Matthew Michael Murdock",
"powers": "Daredevil possesses the strength, speed, agility, and endurance, not to mention acrobatic and gymnastic skills, of an Olympic-level athlete."
},
{
"id": 4,
"superhero_name": "Captain America",
"real_name": "Steven Rogers",
"powers": "Captain America represented the pinnacle of human physical perfection. He experienced a time when he was augmented to superhuman levels, but generally performed just below superhuman levels for most of his career."
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment