Created
January 12, 2021 17:22
-
-
Save jessegavin/a9d8bcc1a66e126a2f22d7d550c11225 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"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" | |
} | |
] | |
}, | |
] | |
} |
This file contains hidden or 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
{ | |
"version": "1.1", | |
"title" : "My Cars", | |
"vehicles" : [ | |
{ | |
"make": "Volkswagen", | |
"model": "Beetle", | |
"year": 1953, | |
"color": "Green" | |
}, | |
{ | |
"make": "Ford", | |
"model": "Mustang", | |
"year": 1982, | |
"color": "Blue" | |
}, | |
] | |
} |
This file contains hidden or 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
{ | |
"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