-
Notifications
You must be signed in to change notification settings - Fork 1
JSON Schema User
Andy edited this page Mar 10, 2015
·
4 revisions
{
"type":"object",
"title": "user",
"properties":{
"username": {"type":"string", "required":true, "maxLength": 255},
"name_last": {"type":"string", "required":true, "maxLength": 255},
"name_first": {"type":"string", "required":true, "maxLength": 255},
"email": {"type":"string", "required":true, "maxLength": 255},
"status": {"type":"string", "required":true, "maxLength": 255},
"addr_line1": {"type":"string", "required":true, "maxLength": 255},
"addr_line2": {"type":"string", "required":true, "maxLength": 255},
"addr_line3": {"type":"string", "required":true, "maxLength": 255},
"postcode": {"type":"string", "required":true, "maxLength": 255},
"phone_home": {"type":"string", "required":true, "maxLength": 255},
"phone_mbl": {"type":"string", "required":true, "maxLength": 255}
}
}