Skip to content

Instantly share code, notes, and snippets.

@jessegavin
Created January 12, 2021 17:22
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 jessegavin/a9d8bcc1a66e126a2f22d7d550c11225 to your computer and use it in GitHub Desktop.
Save jessegavin/a9d8bcc1a66e126a2f22d7d550c11225 to your computer and use it in GitHub Desktop.
{
"version": "1.1",
"title" : "My Cars",
"vehicles" : [
{
"make": "Volkswagen",
"model": "Beetle",
"year": 1953,
"color": "Green",
"engine": {
"type" : "Diesel",
"cylinderLayout": "twin-six"
},
"maintenance": [
{
"type": "Oil Change",
"date": "2020-01-01"
},
{
"type": "Tire Rotation",
"date": "2020-01-01"
}
]
},
{
"make": "Ford",
"model": "Mustang",
"year": 1982,
"color": "Blue",
"engine": {
"type" : "Standard",
"cylinderLayout": "straight-six"
},
"maintenance": [
{
"type": "Oil Change",
"date": "2020-01-01"
},
{
"type": "Tire Rotation",
"date": "2020-01-01"
}
]
},
]
}
{
"version": "1.1",
"title" : "My Cars",
"vehicles" : [
{
"make": "Volkswagen",
"model": "Beetle",
"year": 1953,
"color": "Green"
},
{
"make": "Ford",
"model": "Mustang",
"year": 1982,
"color": "Blue"
},
]
}
{
"make": "Volkswagen",
"model": "Beetle",
"year": 1953,
"color": "Green"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment