You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
667 B

{
"summary": "Registo do Utilizador",
"description": "Permite registar uma nova conta com o utilizador associado.",
"type": "object",
"properties": {
"name": {
"type": "string-not-empty"
},
"surname": {
"type": "string-not-empty"
},
"city_uid": {
"type": "uid"
},
"email": {
"type": "string-not-empty"
},
"username": {
"type": "string-not-empty"
},
"password": {
"type": "string-not-empty"
}
},
"required": [
"name", "surname", "city_uid", "email", "username", "password"
]
}