Skip to content

Instantly share code, notes, and snippets.

@Kappyh
Created October 19, 2020 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kappyh/c2f4f66f593dbca209de64c8d3135d8b to your computer and use it in GitHub Desktop.
Save Kappyh/c2f4f66f593dbca209de64c8d3135d8b to your computer and use it in GitHub Desktop.
equipamentos.json
```
{
"gerencia":{
"_id":2,
"departamento":{
"_id":1,
"nome":"Vendas",
"encarregado":{
"_id":2,
"nome":"Jonas",
"ação":{
"id":1,
"nome":"comprar",
"equipamento":{
"_id":1,
"tipo":{
"_id":1,
"nome":"computador"
}
}
}
},
"usuário":{
"_id":1,
"nome":"Lucia",
"acao":{
"id":4,
"nome":"comprar",
"equipamento":{
"_id":6,
"tipo":{
"_id":1,
"nome":"computador"
}
}
},
"equipamento":{
"_id":6,
"tipo":{
"_id":1,
"nome":"computador"
}
}
},
"técnico":{
"_id":2,
"nome":"José",
"acao":{
"id":3,
"nome":"manutencao",
"equipamento":{
"_id":2,
"tipo":{
"_id":3,
"nome":"teclado"
}
}
},
"equipamento":{
"_id":2,
"tipo":{
"_id":1,
"nome":"computador"
}
}
}
}
}
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment