... | ... | @@ -20,27 +20,27 @@ Por ser um banco de dados documental, as informações são persistidas em cole |
|
|
#### Coleção user:
|
|
|
```
|
|
|
{
|
|
|
Id (string)
|
|
|
Name (string)
|
|
|
Email (string)
|
|
|
Username (string)
|
|
|
Telefone(Object array)[{
|
|
|
Id(string)
|
|
|
Ddd(int)
|
|
|
TipoTelefone(string)
|
|
|
NumeroTelefone(string)
|
|
|
id (string)
|
|
|
name (string)
|
|
|
email (string)
|
|
|
username (string)
|
|
|
phone(Object array)[{
|
|
|
id(string)
|
|
|
ddd(number)
|
|
|
phoneType(string)
|
|
|
number(string)
|
|
|
}]
|
|
|
|
|
|
Genero(string)
|
|
|
Endereco(Object array)[{
|
|
|
Id(hash)
|
|
|
CEP(string)
|
|
|
Rua(string)
|
|
|
Numero(int)
|
|
|
Complemento(string)
|
|
|
Bairro(string)
|
|
|
Cidade(string)
|
|
|
Estado(string)
|
|
|
gender(string)
|
|
|
Address(Object array)[{
|
|
|
id (string)
|
|
|
cep (string)
|
|
|
street (string)
|
|
|
number (number)
|
|
|
complement (string)
|
|
|
district (string)
|
|
|
city (string)
|
|
|
state (string)
|
|
|
}]
|
|
|
|
|
|
Perfil(object array)[{
|
... | ... | @@ -56,28 +56,31 @@ Por ser um banco de dados documental, as informações são persistidas em cole |
|
|
#### Coleção post:
|
|
|
```
|
|
|
{
|
|
|
Id (string)
|
|
|
UserId (string)
|
|
|
UrlImagem (string[])
|
|
|
Descricao (string)
|
|
|
|
|
|
id (string)
|
|
|
userId (string)
|
|
|
description (string)
|
|
|
imageUrls (string[])
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
#### Coleção Denuncia: ---Não sei que campos colocar (À definir)
|
|
|
#### Coleção Denuncia:
|
|
|
```
|
|
|
{
|
|
|
Id (hash)
|
|
|
Idade(int)
|
|
|
nome(string) ? - É anônimo?
|
|
|
Acontecimento(string)
|
|
|
Endereco(object)
|
|
|
LocalViolencia(string)
|
|
|
Suspeito(object)
|
|
|
PossuiDeficiencia(boolean)
|
|
|
Descricao(string)
|
|
|
id (string)
|
|
|
userId (string)
|
|
|
age (string)
|
|
|
complainerName (string)
|
|
|
report (string)
|
|
|
address (Address)
|
|
|
violenceAdress (Address)
|
|
|
suspect (string)
|
|
|
victim (string)
|
|
|
isAggressorDeficient (boolean)
|
|
|
isVictimDeficient (boolean)
|
|
|
reportDetails (string)
|
|
|
complaintDate (number)
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | |