Skip to content

Instantly share code, notes, and snippets.

@gmarcial
Last active April 22, 2019 14:19
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 gmarcial/029fd4ee2cff59b592b7cd331db1e48c to your computer and use it in GitHub Desktop.
Save gmarcial/029fd4ee2cff59b592b7cd331db1e48c to your computer and use it in GitHub Desktop.
//Criação de um evento.
{
"Nome":"Evento XPTO",
"Descrição":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
"Periodo":{
"DataInicial":"10/03/2020 10:00:00",
"DataFinal":"10/04/2020 15:00:00"
},
"AtracoesIds":[
1,
2,
3
],
"Local":{
"Latitude":-15.6259739,
"Longitude":-56.0565424
}
}
-
//Criação de uma atração.
{
"Nome": "Atraçao XPTO",
"Nome do tutor": "Fulano de tal",
"Duracao":
{
"DataInicial": "10/03/2020 10:00:00",
"DataFinal": "10/04/2020 15:00:00"
},
"Local":
{
"Latitude": -15.6259739,
"Longitude": -56.0565424
},
"Type": 1,
"QuantidadeVagas": 40
}
-
//Inscrição de um participante.
{
"Nome": "Fulano de tal",
"Cpf": "00999999909",
"Email": "fulao@gmail.com",
"Telefone": "99999999999",
"Evento":
{
"Id": 1,
"AtracoesId": [1, 2, 3]
}
}
@MagnoSalim
Copy link

{
"Nome":"Evento XPTO",
"Descrição":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
"Periodo":{
"DataInicial":"10/03/2020 10:00:00",
"DataFinal":"10/04/2020 15:00:00"
},
"AtracoesIds":[
1,
2,
3
],
"PeriodoInscricao": "09/03/2020 23:59:59",
"Local":{
"Latitude":-15.6259739,
"Longitude":-56.0565424
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment