forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataform-6.json
158 lines (158 loc) · 5.19 KB
/
dataform-6.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[
"dataform",
{
"instructions": ["Please fill out this form"],
"title": "XSF Application",
"type": "form",
"layout": [
{
"label": "Personal Information",
"contents": [
{
"type": "text",
"value": "This is page one of three."
},
{
"type": "text",
"value": "Note: In accordance with the XSF privacy policy, your personal information will never be shared outside the organization in any way for any purpose; however, your name and JID may be published in the XSF membership directory."
},
{
"type": "fieldref",
"field": "name.first"
},
{
"type": "fieldref",
"field": "name.last"
},
{
"type": "fieldref",
"field": "email"
},
{
"type": "fieldref",
"field": "jid"
},
{
"type": "fieldref",
"field": "background"
}
]
},
{
"label": "Community Activity",
"contents": [
{
"type": "text",
"value": "This is page two of three."
},
{
"type": "text",
"value": "We use this page to gather information about any XEPs you've worked on, as well as your mailing list activity."
},
{
"type": "text",
"value": "You do post to the mailing lists, don't you?"
},
{
"type": "fieldref",
"field": "activity.mailing-lists"
},
{
"type": "fieldref",
"field": "activity.xeps"
}
]
},
{
"label": "Plans and Reasonings",
"contents": [
{
"type": "text",
"value": "This is page three of three."
},
{
"type": "text",
"value": "You're almost done!"
},
{
"type": "text",
"value": "This is where you describe your future plans and why you think you deserve to be a member of the XMPP Standards Foundation."
},
{
"type": "fieldref",
"field": "future"
},
{
"type": "fieldref",
"field": "reasoning"
}
]
}
],
"fields": [
{
"label": "First Name",
"name": "name.first",
"rawValues": [],
"required": true,
"type": "text-single"
},
{
"label": "Last Name",
"name": "name.last",
"rawValues": [],
"required": true,
"type": "text-single"
},
{
"label": "E-mail Address",
"name": "email",
"rawValues": [],
"required": true,
"type": "text-single"
},
{
"label": "Jabber JID",
"name": "jid",
"rawValues": [],
"required": true,
"type": "jid-single"
},
{
"label": "Background Information",
"name": "background",
"rawValues": [],
"type": "text-multi",
"value": []
},
{
"label": "Jabber Plans for the Next Six Months",
"name": "future",
"rawValues": [],
"type": "text-multi",
"value": []
},
{
"label": "Reasons for Joining",
"name": "reasoning",
"rawValues": [],
"type": "text-multi",
"value": []
},
{
"label": "Recent Mailing List Activity",
"name": "activity.mailing-lists",
"rawValues": [],
"type": "text-multi",
"value": []
},
{
"label": "XEPs Authored or Co-Authored",
"name": "activity.xeps",
"rawValues": [],
"type": "text-multi",
"value": []
}
]
}
]