-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.js
58 lines (58 loc) · 838 Bytes
/
input.js
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
export default {
"individus": {
"Fabien": {
"statut_marital": {
"2017-01": "celibataire"
}
},
"Marion": {},
"Matthieu": {
"date_naissance": {
"2017": "2010-10-10"
}
}
},
"foyers_fiscaux": {
"_": {
"declarants": ["Fabien", "Marion"],
"personnes_a_charge": ["Matthieu"],
"rfr": {
"2017": 65666
},
"rbg": {
"2017": 65596
},
"nbptr": {
"2017": 2.5
},
"rni": {
"2017": null
},
"ir_brut": {
"2017": null
},
"ir_plaf_qf": {
"2017": null
},
"ir_ss_qf": {
"2017": null
},
"irpp": {
"2017": null
}
}
},
"familles": {
"_": {
"parents": ["Fabien", "Marion"],
"enfants": ["Matthieu"]
}
},
"menages": {
"_": {
"personne_de_reference": ["Fabien"],
"conjoint": ["Marion"],
"enfants": ["Matthieu"]
}
}
}