-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmydata_profile_schema.json
86 lines (86 loc) · 1.57 KB
/
mydata_profile_schema.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
[
[
{
"key": "my-firstname",
"type": "Text",
"label": "First Name",
"isMandatory": true
},
{
"key": "my-lastname",
"type": "Text",
"label": "Last Name",
"isMandatory": true
},
{
"key": "my-email",
"type": "String",
"label": "Email",
"isMandatory": true
},
{
"key": "my-salutation",
"type": "Text",
"label": "Salutation",
"isMandatory": false
},
{
"key": "my-gender",
"type": "Text",
"label": "Gender",
"isMandatory": false
},
{
"key": "my-nationality",
"type": "Text",
"label": "Nationality",
"isMandatory": true
}
],
[
{
"key": "my-homephonenumber",
"type": "String",
"label": "Home Phone Number",
"isMandatory": false
},
{
"key": "my-mobilephonenumber",
"type": "String",
"label": "Mobile Phone Number",
"isMandatory": true
}
],
[
{
"key": "my-mailingstreet",
"type": "Text",
"label": "Street",
"isMandatory": false
},
{
"key": "my-mailingcity",
"type": "Text",
"label": "City",
"isMandatory": false
},
{
"key": "my-mailingstate",
"type": "String",
"label": "State",
"isMandatory": false
},
{
"key": "my-mailingpostcode",
"type": "Text",
"label": "Postcode",
"isMandatory": false
},
{
"key": "my-mailingcountry",
"type": "Text",
"label": "Country",
"isMandatory": false
}
]
]