Skip to content

Instantly share code, notes, and snippets.

@georgewfraser
Created September 23, 2015 20:59
Show Gist options
  • Save georgewfraser/196c84c5072a800e9cb9 to your computer and use it in GitHub Desktop.
Save georgewfraser/196c84c5072a800e9cb9 to your computer and use it in GitHub Desktop.
{
"goodDateTime": "1970-01-01T00:00:00Z",
"badDateTime": "foo",
"DATE_TIME": "1970-01-01T00:00:00Z",
"badDATE_TIME": "foo"
}
{
"type": "object",
"properties": {
"goodDateTime": {
"type": "string",
"format": "date-time"
},
"badDateTime": {
"type": "string",
"format": "date-time"
},
"DATE_TIME": {
"type": "string",
"format": "DATE_TIME"
},
"badDATE_TIME": {
"type": "string",
"format": "DATE_TIME"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment