@info73208
Take a look at this CONTACT-STRUCTURE_EXAMPLE:
const contactInfo = {
6 name: {
7 first: "Ari",
8 last: "Thereyet"
9 },
10 emails: [
11 {
12 email: "ari.thereyet@example.com",
13 },
14 {
15 email: "ari.thereyet.appended.email@example.com"
16 }
17 ],
18 phones: [
19 {
20 tag: "MOBILE",
21 countryCode: "US",
22 phone: "601-081-124",
23 primary: true
24 }
25 ]
26};
Expected type for EMAIL → is an → ARRAY!
The same for → PHONES!