Estágio Escola Superior de Tecnologia de Setúbal. https://www.estsetubal.ips.pt/
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.
 

33 lines
640 B

{
"summary": "Registo",
"description": "Registo das contas dos utilizadores.",
"type": "object",
"properties": {
"name": {
"type": "string-not-empty"
},
"surname": {
"type": "string-not-empty"
},
"city_uid": {
"_schema": "cities"
},
"email": {
"type": "string-not-empty"
},
"username": {
"type": "string-not-empty"
},
"password": {
"type": "string-not-empty"
}
},
"required": [
"name",
"surname",
"city_uid",
"email",
"username",
"password"
]
}