Skip to content

Instantly share code, notes, and snippets.

@creesch
Created November 10, 2021 09:39
Show Gist options
  • Save creesch/9df6081aa461bdb86a67d602f93ae0bc to your computer and use it in GitHub Desktop.
Save creesch/9df6081aa461bdb86a67d602f93ae0bc to your computer and use it in GitHub Desktop.
{
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"birthday": { "type": "string", "format": "date" },
"address": {
"type": "object",
"properties": {
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"country": { "type" : "string" }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment