-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
62 lines (62 loc) · 1.27 KB
/
data.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
{
"campos": [
{
"nombre": "Campo La Esperanza",
"ubicacion": {
"provincia": "Buenos Aires",
"ciudad": "Azul",
"coordenadas": {
"latitud": -36.779,
"longitud": -59.869
}
},
"parcelas": [
{
"numero": 1,
"tamanio": 20,
"tipoCultivo": "Soja",
"estado": "En crecimiento"
},
{
"numero": 2,
"tamanio": 25,
"tipoCultivo": "Maíz",
"estado": "Cosechado"
}
],
"dueno": {
"nombre": "Carlos García",
"contacto": "+5491123456789"
}
},
{
"nombre": "Campo El Sol",
"ubicacion": {
"provincia": "Córdoba",
"ciudad": "Río Cuarto",
"coordenadas": {
"latitud": -33.133,
"longitud": -64.349
}
},
"parcelas": [
{
"numero": 1,
"tamanio": 15,
"tipoCultivo": "Trigo",
"estado": "Por sembrar"
},
{
"numero": 2,
"tamanio": 30,
"tipoCultivo": "Girasol",
"estado": "En crecimiento"
}
],
"dueno": {
"nombre": "Lucía Fernández",
"contacto": "+5492123456789"
}
}
]
}