-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlantilla.json
90 lines (89 loc) · 2.91 KB
/
Plantilla.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"municipality": "String/ Nombre del municipio",
"info":
{
"nameLocal": "string/ nombre del local",
"location":
{
"address": "string/ calle pricipal entre calles laterales",
"barrio": "string/ nombre del barrio",
"GPS": "string/ latitud,longitud"
},
"horarios":
{
"monday": "string/ horario de apertura en formato militar o 'open' en caso de no tener horario",
"thuesday": "0900-1200",
"wednesday": "",
"thursday": "",
"friday": "",
"saturday": "",
"sunday": ""
},
"contactUs":
{
"phone": ["int/ numero del local"],
"web": "string/ link del local",
"social": ["string/ link a las diferentes redes del local "]
},
"services":
{
"tranfer": false,
"delivery": false,
"parallevar": false,
"reservation": false,
"tipoDeMoneda": ["string/ siglas de las monedas q acepta"],
"parqueo": false,
"porCiento": false,
"alquiler": false,
"comentarios": "string/ algun comentario sobre el lugar"
},
"ambientacion":
{
"inside": false,
"outside": false,
"bajos": false,
"altos": false,
"ac": false,
"entretenimiento": ["string/ diferentes servicios para e lentretenimiento del local"],
"comentarios": "string/ algun comentario sobre el lugar"
},
"vestimenta": ["string/ tipo de ropa adecuada"],
"estatal": false,
"tipoDeComidaEspecializada": ["string/ tipo de comida q ofrece"],
"menu":
{
"entrantes":
[
{
"foodName": "string/ nombre del plato",
"foodPrecio": "int/precio del plato"
}
],
"platoFuerte":
[
{
"foodName": "string/ nombre del plato",
"foodPrecio": "int/precio del plato",
"description": "string-null/ en caso de q el nombre del plato sea un nombre unico y no diga de q esta hecho; de otra forma el valor es null",
"clasificacion": "string/ carne roja, blanca, guarniciones etc"
}
],
"postre":
[
{
"foodName": "string/ nombre del plato",
"foodPrecio": "int/precio del plato"
}
],
"bebidas":
[
{
"foodName": "string/ nombre de la bebida",
"foodPrecio": "int/precio del plato",
"alcoholica": false,
"importada": false
}
]
}
}
}