-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemoria.json
47 lines (46 loc) · 1.1 KB
/
memoria.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"usuarios": [
{
"nome": "Usuário 1",
"funcao": "Função 1"
},
{
"nome": "Usuário 2",
"funcao": "Função 2"
}
],
"projetos": [
{
"nome": "Projeto 1",
"descricao": "Descrição do Projeto 1",
"status": "Não Iniciado",
"prioridade": "Baixa",
"data_entrega": "2023-12-31",
"responsavel": "Usuário 1",
"tarefas": [
{
"descricao": "Tarefa 1 do Projeto 1",
"status": "Não Iniciado"
},
{
"descricao": "Tarefa 2 do Projeto 1",
"status": "Em Andamento"
}
]
},
{
"nome": "Projeto 2",
"descricao": "Descrição do Projeto 2",
"status": "Em Andamento",
"prioridade": "Média",
"data_entrega": "2023-11-15",
"responsavel": "Usuário 2",
"tarefas": [
{
"descricao": "Tarefa 1 do Projeto 2",
"status": "Concluído"
}
]
}
]
}