Skip to content

Instantly share code, notes, and snippets.

@jsmestad
Created October 3, 2014 16:11
Show Gist options
  • Save jsmestad/91357ec53e40b8f55edd to your computer and use it in GitHub Desktop.
Save jsmestad/91357ec53e40b8f55edd to your computer and use it in GitHub Desktop.
{
"type": "object",
"required": ["domains"],
"properties": {
"domains" : {
"type": "array",
"items": {
"type" : "object",
"required" : [
"created_at",
"id",
"name",
"tld",
"updated_at",
"links"
],
"properties" : {
"created_at" : { "type" : "string", "format": "date-time" },
"id" : { "type" : "string" },
"name" : { "type" : "string" },
"tld" : { "type" : "string" },
"updated_at" : { "type" : "string", "format": "date-time" },
"links": { "type": "object" }
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment