Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created September 14, 2017 19:04
Show Gist options
  • Save al3rez/10d7f1a7eca3f7c2ad88c99498a69b37 to your computer and use it in GitHub Desktop.
Save al3rez/10d7f1a7eca3f7c2ad88c99498a69b37 to your computer and use it in GitHub Desktop.
{
"type": "object",
"required": ["user"],
"properties": {
"user" : {
"type" : "object",
"required" : [
"id",
"token",
"token_expired_at",
"email",
"firstname",
"lastname",
"gender",
"phone_number",
"birthday"
],
"properties" : {
"id" : { "type" : "integer" },
"token" : { "type" : "string" },
"token_expired_at" : { "type" : "string" },
"email" : { "type" : "string" },
"lastname" : { "type" : "string" },
"firstname" : { "type" : "string" },
"gender" : { "type" : "string" },
"phone_number" : { "type" : "string" },
"brithday" : { "type" : "string", "format": "date-time" },
"updated_at" : { "type" : "string", "format": "date-time" },
"created_at" : { "type" : "string", "format": "date-time" },
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment