1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Capturing the current output of the demo.
$ ./resume.exe
VALID:
[
{
"company": "Acme Corp.",
"title": "Tester",
"start_date": { "year": 2005, "month": 8, "day": 1 },
"end_date": { "year": 2006, "month": 3, "day": 22 }
},
{
"company": "Acme Corp.",
"title": "Tester",
"start_date": { "year": 2000, "month": 2, "day": 29 },
"end_date": { "year": 2006, "month": 3, "day": 22 }
}
]
INVALID:
[
{
"company": "Acme Corp.",
"title": "Tester",
"start_date": { "year": 2005, "month": 8, "day": 1 },
"end_date": { "year": 2006, "month": 3, "day": 22 }
},
{
"company": "Acme Corp.",
"title": "Tester",
"start_date": { "year": 2005, "month": 8, "day": 1 },
"end_date": { "year": 1900, "month": 0, "day": 0 }
}
]
|