@paris-ias/trees 1.8.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +679 -0
- package/dist/form/action.js +83 -0
- package/dist/form/affiliation.js +178 -0
- package/dist/form/apps.js +132 -0
- package/dist/form/disciplines.js +30 -0
- package/dist/form/events.js +836 -0
- package/dist/form/fellowships.js +1307 -0
- package/dist/form/files.js +30 -0
- package/dist/form/mailing.js +43 -0
- package/dist/form/news.js +252 -0
- package/dist/form/people.js +658 -0
- package/dist/form/projects.js +338 -0
- package/dist/form/publications.js +364 -0
- package/dist/form/tags.js +38 -0
- package/dist/form/users.js +576 -0
- package/dist/graphql/client/action/query.get.action.gql +22 -0
- package/dist/graphql/client/action/query.list.action.gql +32 -0
- package/dist/graphql/client/affiliation/query.get.affiliations.gql +37 -0
- package/dist/graphql/client/affiliation/query.list.affiliations.gql +43 -0
- package/dist/graphql/client/apps/query.get.apps.gql +33 -0
- package/dist/graphql/client/apps/query.list.apps.gql +43 -0
- package/dist/graphql/client/events/query.get.events.gql +119 -0
- package/dist/graphql/client/events/query.list.events.gql +40 -0
- package/dist/graphql/client/fellowships/query.get.fellowships.gql +163 -0
- package/dist/graphql/client/fellowships/query.list.fellowships.gql +49 -0
- package/dist/graphql/client/files/query.get.files.gql +24 -0
- package/dist/graphql/client/files/query.list.files.gql +37 -0
- package/dist/graphql/client/mailing/query.get.mailing.gql +24 -0
- package/dist/graphql/client/mailing/query.list.mailing.gql +23 -0
- package/dist/graphql/client/misc/apex.mutations.delete.gql +0 -0
- package/dist/graphql/client/misc/apex.mutations.upsert.gql +0 -0
- package/dist/graphql/client/misc/apex.queries.login.gql +0 -0
- package/dist/graphql/client/misc/query.get.disciplines.gql +17 -0
- package/dist/graphql/client/misc/query.get.tags.gql +13 -0
- package/dist/graphql/client/misc/query.list.disciplines.gql +23 -0
- package/dist/graphql/client/misc/query.list.tags.gql +23 -0
- package/dist/graphql/client/news/query.get.news.gql +128 -0
- package/dist/graphql/client/news/query.list.news.gql +35 -0
- package/dist/graphql/client/people/query.get.people.gql +173 -0
- package/dist/graphql/client/people/query.get.users.gql +0 -0
- package/dist/graphql/client/people/query.list.people.gql +55 -0
- package/dist/graphql/client/people/query.list.users.gql +31 -0
- package/dist/graphql/client/projects/query.get.projects.gql +166 -0
- package/dist/graphql/client/projects/query.list.projects.gql +33 -0
- package/dist/graphql/client/publications/query.get.publications.gql +169 -0
- package/dist/graphql/client/publications/query.list.publications.gql +35 -0
- package/dist/graphql/schemas/apex-resolvers-list.json +45 -0
- package/dist/graphql/schemas/schema.apex.graphql +946 -0
- package/dist/graphql/schemas/schema.website.graphql +794 -0
- package/dist/graphql/schemas/website-resolvers-list.json +22 -0
- package/dist/list/action.js +133 -0
- package/dist/list/affiliation.js +133 -0
- package/dist/list/apps.js +133 -0
- package/dist/list/disciplines.js +132 -0
- package/dist/list/events.js +186 -0
- package/dist/list/fellowships.js +149 -0
- package/dist/list/files.js +132 -0
- package/dist/list/mailing.js +132 -0
- package/dist/list/news.js +135 -0
- package/dist/list/people.js +176 -0
- package/dist/list/projects.js +135 -0
- package/dist/list/publications.js +152 -0
- package/dist/list/tags.js +133 -0
- package/dist/list/users.js +176 -0
- package/index.ts +63 -0
- package/lib/README.md +206 -0
- package/lib/buildClientGraphQL.ts +342 -0
- package/lib/buildDefaults.ts +0 -0
- package/lib/buildSchemas.ts +109 -0
- package/lib/generate.ts +505 -0
- package/lib/generateAll.ts +231 -0
- package/lib/utils.ts +24 -0
- package/package.json +34 -0
- package/readme.md +116 -0
- package/src/LICENSE +661 -0
- package/src/action/graphql/client/query.get.action.gql +22 -0
- package/src/action/graphql/client/query.list.action.gql +32 -0
- package/src/action/graphql/server/apex.types.action.graphql +15 -0
- package/src/action/models/action.ts +147 -0
- package/src/affiliation/graphql/client/query.get.affiliations.gql +37 -0
- package/src/affiliation/graphql/client/query.list.affiliations.gql +43 -0
- package/src/affiliation/graphql/server/shared.types.affiliations.graphql +20 -0
- package/src/affiliation/models/affiliation.ts +130 -0
- package/src/affiliation/models/member.ts +11 -0
- package/src/affiliation/models/partner.ts +9 -0
- package/src/apps/graphql/client/query.get.apps.gql +33 -0
- package/src/apps/graphql/client/query.list.apps.gql +43 -0
- package/src/apps/models/apps.ts +195 -0
- package/src/events/graphql/client/query.get.events.gql +119 -0
- package/src/events/graphql/client/query.list.events.gql +40 -0
- package/src/events/graphql/server/shared.inputs.events.graphql +24 -0
- package/src/events/models/eventSlot.ts +73 -0
- package/src/events/models/events.ts +569 -0
- package/src/fellowships/graphql/client/query.get.fellowships.gql +163 -0
- package/src/fellowships/graphql/client/query.list.fellowships.gql +49 -0
- package/src/fellowships/graphql/server/apex.inputs.fellowshipDetails.graphql +13 -0
- package/src/fellowships/graphql/server/shared.types.fellowshipDetails.graphql +13 -0
- package/src/fellowships/graphql/server/shared.types.fellowships.graphql +38 -0
- package/src/fellowships/models/fellowshipDetails.ts +145 -0
- package/src/fellowships/models/fellowships.ts +341 -0
- package/src/files/graphql/client/query.get.files.gql +24 -0
- package/src/files/graphql/client/query.list.files.gql +37 -0
- package/src/files/graphql/server/apex.inputs.files.graphql +7 -0
- package/src/files/graphql/server/apex.inputs.video.graphql +9 -0
- package/src/files/graphql/server/apex.types.files.graphql +4 -0
- package/src/files/graphql/server/shared.inputs.image.graphql +9 -0
- package/src/files/graphql/server/shared.types.files.graphql +15 -0
- package/src/files/graphql/server/shared.types.image.graphql +9 -0
- package/src/files/graphql/server/shared.types.video.graphql +9 -0
- package/src/files/models/files.ts +113 -0
- package/src/files/models/gallery.ts +11 -0
- package/src/files/models/image.ts +159 -0
- package/src/files/models/video.ts +166 -0
- package/src/form.ts +52 -0
- package/src/index.ts +98 -0
- package/src/list.ts +34 -0
- package/src/mailing/graphql/client/query.get.mailing.gql +24 -0
- package/src/mailing/graphql/client/query.list.mailing.gql +23 -0
- package/src/mailing/graphql/server/apex.types.mailing.graphql +13 -0
- package/src/mailing/models/mailing.ts +123 -0
- package/src/misc/graphql/client/apex.mutations.delete.gql +0 -0
- package/src/misc/graphql/client/apex.mutations.upsert.gql +0 -0
- package/src/misc/graphql/client/apex.queries.login.gql +0 -0
- package/src/misc/graphql/client/query.get.disciplines.gql +17 -0
- package/src/misc/graphql/client/query.get.tags.gql +13 -0
- package/src/misc/graphql/client/query.list.disciplines.gql +23 -0
- package/src/misc/graphql/client/query.list.tags.gql +23 -0
- package/src/misc/graphql/server/apex.inputs.misc.graphql +13 -0
- package/src/misc/graphql/server/apex.inputs.socials.graphql +12 -0
- package/src/misc/graphql/server/apex.mutations.graphql +23 -0
- package/src/misc/graphql/server/apex.queries.graphql +36 -0
- package/src/misc/graphql/server/apex.types.disciplines.graphql +4 -0
- package/src/misc/graphql/server/apex.types.tags.graphql +4 -0
- package/src/misc/graphql/server/shared.enums.graphql +112 -0
- package/src/misc/graphql/server/shared.inputs.misc.graphql +101 -0
- package/src/misc/graphql/server/shared.queries.graphql +35 -0
- package/src/misc/graphql/server/shared.types.disciplines.graphql +8 -0
- package/src/misc/graphql/server/shared.types.events.graphql +39 -0
- package/src/misc/graphql/server/shared.types.location.graphql +17 -0
- package/src/misc/graphql/server/shared.types.misc.graphql +120 -0
- package/src/misc/graphql/server/shared.types.related.graphql +10 -0
- package/src/misc/graphql/server/shared.types.relatedAffiliation.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedEvent.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedFellowships.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedNews.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedPeople.graphql +6 -0
- package/src/misc/graphql/server/shared.types.relatedProject.graphql +7 -0
- package/src/misc/graphql/server/shared.types.relatedPublications.graphql +6 -0
- package/src/misc/graphql/server/shared.types.socials.graphql +22 -0
- package/src/misc/graphql/server/shared.types.tags.graphql +11 -0
- package/src/misc/graphql/server/website.mutations.graphql +4 -0
- package/src/misc/models/disciplines.ts +116 -0
- package/src/misc/models/location.ts +136 -0
- package/src/misc/models/organizers.ts +13 -0
- package/src/misc/models/related.ts +123 -0
- package/src/misc/models/relatedEvents.ts +16 -0
- package/src/misc/models/relatedFellowships.ts +7 -0
- package/src/misc/models/relatedNews.ts +13 -0
- package/src/misc/models/relatedPeople.ts +8 -0
- package/src/misc/models/relatedProject.ts +14 -0
- package/src/misc/models/relatedPublications.ts +14 -0
- package/src/misc/models/socials.ts +133 -0
- package/src/misc/models/sponsor.ts +13 -0
- package/src/misc/models/tags.ts +116 -0
- package/src/misc/models/taxonomy.ts +1 -0
- package/src/model.ts +7 -0
- package/src/news/graphql/client/query.get.news.gql +128 -0
- package/src/news/graphql/client/query.list.news.gql +35 -0
- package/src/news/graphql/server/share.types.news.graphql +27 -0
- package/src/news/models/news.ts +257 -0
- package/src/people/graphql/client/query.get.people.gql +173 -0
- package/src/people/graphql/client/query.get.users.gql +0 -0
- package/src/people/graphql/client/query.list.people.gql +55 -0
- package/src/people/graphql/client/query.list.users.gql +31 -0
- package/src/people/graphql/server/apex.inputs.consent.graphql +9 -0
- package/src/people/graphql/server/apex.inputs.groups.graphql +8 -0
- package/src/people/graphql/server/apex.inputs.vintage.graphql +6 -0
- package/src/people/graphql/server/shared.types.consent.graphql +9 -0
- package/src/people/graphql/server/shared.types.groups.graphql +8 -0
- package/src/people/graphql/server/shared.types.people.graphql +29 -0
- package/src/people/graphql/server/shared.types.position.graphql +6 -0
- package/src/people/graphql/server/shared.types.users.graphql +17 -0
- package/src/people/graphql/server/shared.types.vintage.graphql +6 -0
- package/src/people/models/consent.ts +82 -0
- package/src/people/models/discussants.ts +9 -0
- package/src/people/models/experiences.ts +38 -0
- package/src/people/models/fellows.ts +12 -0
- package/src/people/models/groups.ts +58 -0
- package/src/people/models/people.ts +244 -0
- package/src/people/models/position.ts +62 -0
- package/src/people/models/speakers.ts +9 -0
- package/src/people/models/users.ts +252 -0
- package/src/people/models/vintage.ts +124 -0
- package/src/projects/graphql/client/query.get.projects.gql +166 -0
- package/src/projects/graphql/client/query.list.projects.gql +33 -0
- package/src/projects/graphql/server/shared.types.projects.graphql +29 -0
- package/src/projects/models/projects.ts +249 -0
- package/src/publications/graphql/client/query.get.publications.gql +169 -0
- package/src/publications/graphql/client/query.list.publications.gql +35 -0
- package/src/publications/graphql/server/shared.types.publications.graphql +34 -0
- package/src/publications/models/article.ts +262 -0
- package/src/publications/models/publications.ts +306 -0
|
@@ -0,0 +1,1307 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"_defaults": {
|
|
3
|
+
"name": {
|
|
4
|
+
"en": "",
|
|
5
|
+
"fr": ""
|
|
6
|
+
},
|
|
7
|
+
"subtitle": {
|
|
8
|
+
"en": "",
|
|
9
|
+
"fr": ""
|
|
10
|
+
},
|
|
11
|
+
"summary": {
|
|
12
|
+
"en": "",
|
|
13
|
+
"fr": ""
|
|
14
|
+
},
|
|
15
|
+
"action": "",
|
|
16
|
+
"affiliation": "",
|
|
17
|
+
"applicationStart": "",
|
|
18
|
+
"fellowshipStart": "",
|
|
19
|
+
"contact": "",
|
|
20
|
+
"description": {
|
|
21
|
+
"en": "",
|
|
22
|
+
"fr": ""
|
|
23
|
+
},
|
|
24
|
+
"disciplines": "",
|
|
25
|
+
"fellowshipType": "",
|
|
26
|
+
"fellowshipDetails": {
|
|
27
|
+
"type": {
|
|
28
|
+
"en": "",
|
|
29
|
+
"fr": ""
|
|
30
|
+
},
|
|
31
|
+
"fundingPeriod": {
|
|
32
|
+
"en": "",
|
|
33
|
+
"fr": ""
|
|
34
|
+
},
|
|
35
|
+
"profile": {
|
|
36
|
+
"en": "",
|
|
37
|
+
"fr": ""
|
|
38
|
+
},
|
|
39
|
+
"tasks": {
|
|
40
|
+
"en": "",
|
|
41
|
+
"fr": ""
|
|
42
|
+
},
|
|
43
|
+
"location": [
|
|
44
|
+
{
|
|
45
|
+
"name": "",
|
|
46
|
+
"details": "",
|
|
47
|
+
"alt": "",
|
|
48
|
+
"street": "",
|
|
49
|
+
"city": "",
|
|
50
|
+
"country": "",
|
|
51
|
+
"zip": "",
|
|
52
|
+
"geocode": {
|
|
53
|
+
"lat": "",
|
|
54
|
+
"lng": ""
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"funding": {
|
|
59
|
+
"en": "",
|
|
60
|
+
"fr": ""
|
|
61
|
+
},
|
|
62
|
+
"housing": {
|
|
63
|
+
"en": "",
|
|
64
|
+
"fr": ""
|
|
65
|
+
},
|
|
66
|
+
"meals": {
|
|
67
|
+
"en": "",
|
|
68
|
+
"fr": ""
|
|
69
|
+
},
|
|
70
|
+
"applicationMaterials": {
|
|
71
|
+
"en": "",
|
|
72
|
+
"fr": ""
|
|
73
|
+
},
|
|
74
|
+
"selectionProcess": {
|
|
75
|
+
"en": "",
|
|
76
|
+
"fr": ""
|
|
77
|
+
},
|
|
78
|
+
"researchSupport": {
|
|
79
|
+
"en": "",
|
|
80
|
+
"fr": ""
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"fellows": [
|
|
84
|
+
{
|
|
85
|
+
"firstname": "",
|
|
86
|
+
"lastname": "",
|
|
87
|
+
"biography": {
|
|
88
|
+
"en": "",
|
|
89
|
+
"fr": ""
|
|
90
|
+
},
|
|
91
|
+
"image": "",
|
|
92
|
+
"experiences": [
|
|
93
|
+
{
|
|
94
|
+
"experiences": {
|
|
95
|
+
"affiliation": "",
|
|
96
|
+
"positions": [
|
|
97
|
+
{
|
|
98
|
+
"positions": {
|
|
99
|
+
"role": "",
|
|
100
|
+
"department": "",
|
|
101
|
+
"start": "",
|
|
102
|
+
"stop": ""
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"socials": {
|
|
110
|
+
"website": "",
|
|
111
|
+
"wikipedia": "",
|
|
112
|
+
"orcid": "",
|
|
113
|
+
"scholar": "",
|
|
114
|
+
"researchgate": "",
|
|
115
|
+
"mendeley": "",
|
|
116
|
+
"idRef": "",
|
|
117
|
+
"twitter": "",
|
|
118
|
+
"linkedin": "",
|
|
119
|
+
"bluesky": "",
|
|
120
|
+
"instagram": "",
|
|
121
|
+
"youtube": ""
|
|
122
|
+
},
|
|
123
|
+
"disciplines": "",
|
|
124
|
+
"video": [
|
|
125
|
+
{
|
|
126
|
+
"video": {
|
|
127
|
+
"url": "",
|
|
128
|
+
"caption": {
|
|
129
|
+
"en": "",
|
|
130
|
+
"fr": ""
|
|
131
|
+
},
|
|
132
|
+
"alt": {
|
|
133
|
+
"en": "",
|
|
134
|
+
"fr": ""
|
|
135
|
+
},
|
|
136
|
+
"copyright": "Free of rights",
|
|
137
|
+
"licence": "",
|
|
138
|
+
"licenseUrl": "",
|
|
139
|
+
"backgroundColor": ""
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"related": {
|
|
144
|
+
"events": "",
|
|
145
|
+
"news": "",
|
|
146
|
+
"people": "",
|
|
147
|
+
"publications": "",
|
|
148
|
+
"projects": "",
|
|
149
|
+
"fellowships": ""
|
|
150
|
+
},
|
|
151
|
+
"consent": {
|
|
152
|
+
"data": false,
|
|
153
|
+
"record": false,
|
|
154
|
+
"diffusion": false,
|
|
155
|
+
"publication": false,
|
|
156
|
+
"email": false,
|
|
157
|
+
"newsletter": false,
|
|
158
|
+
"fellowshipnewsletter": false
|
|
159
|
+
},
|
|
160
|
+
"groups": {
|
|
161
|
+
"team": false,
|
|
162
|
+
"sab": false,
|
|
163
|
+
"board": false,
|
|
164
|
+
"fellows": false,
|
|
165
|
+
"sponsor": false,
|
|
166
|
+
"vintage": [
|
|
167
|
+
{
|
|
168
|
+
"name": "",
|
|
169
|
+
"year": "",
|
|
170
|
+
"theme": {
|
|
171
|
+
"en": "",
|
|
172
|
+
"fr": ""
|
|
173
|
+
},
|
|
174
|
+
"url": ""
|
|
175
|
+
}
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"gallery": "",
|
|
181
|
+
"url": "",
|
|
182
|
+
"fellowshipStop": "",
|
|
183
|
+
"applicationStop": "",
|
|
184
|
+
"image": "",
|
|
185
|
+
"publicationDate": "",
|
|
186
|
+
"files": "",
|
|
187
|
+
"video": [
|
|
188
|
+
{
|
|
189
|
+
"video": {
|
|
190
|
+
"url": "",
|
|
191
|
+
"caption": {
|
|
192
|
+
"en": "",
|
|
193
|
+
"fr": ""
|
|
194
|
+
},
|
|
195
|
+
"alt": {
|
|
196
|
+
"en": "",
|
|
197
|
+
"fr": ""
|
|
198
|
+
},
|
|
199
|
+
"copyright": "Free of rights",
|
|
200
|
+
"licence": "",
|
|
201
|
+
"licenseUrl": "",
|
|
202
|
+
"backgroundColor": ""
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"schema": {
|
|
208
|
+
"name": {
|
|
209
|
+
"label": "name",
|
|
210
|
+
"component": "TextField",
|
|
211
|
+
"i18n": true,
|
|
212
|
+
"type": "PRIMITIVE",
|
|
213
|
+
"rules": {
|
|
214
|
+
"required": true,
|
|
215
|
+
"min": 5,
|
|
216
|
+
"max": 200
|
|
217
|
+
},
|
|
218
|
+
"meta": "name"
|
|
219
|
+
},
|
|
220
|
+
"subtitle": {
|
|
221
|
+
"label": "subtitle",
|
|
222
|
+
"component": "TextField",
|
|
223
|
+
"i18n": true,
|
|
224
|
+
"type": "PRIMITIVE",
|
|
225
|
+
"rules": {
|
|
226
|
+
"required": true,
|
|
227
|
+
"min": 5,
|
|
228
|
+
"max": 200
|
|
229
|
+
},
|
|
230
|
+
"meta": "subtitle"
|
|
231
|
+
},
|
|
232
|
+
"summary": {
|
|
233
|
+
"label": "summary",
|
|
234
|
+
"component": "TextArea",
|
|
235
|
+
"type": "PRIMITIVE",
|
|
236
|
+
"i18n": true,
|
|
237
|
+
"rules": {
|
|
238
|
+
"required": true,
|
|
239
|
+
"min": 5,
|
|
240
|
+
"max": 200
|
|
241
|
+
},
|
|
242
|
+
"meta": "summary"
|
|
243
|
+
},
|
|
244
|
+
"action": {
|
|
245
|
+
"label": "action",
|
|
246
|
+
"component": "TextField",
|
|
247
|
+
"type": "PRIMITIVE",
|
|
248
|
+
"rules": {
|
|
249
|
+
"required": true
|
|
250
|
+
},
|
|
251
|
+
"meta": "action"
|
|
252
|
+
},
|
|
253
|
+
"affiliation": {
|
|
254
|
+
"label": "affiliations",
|
|
255
|
+
"component": "AffiliationPicker",
|
|
256
|
+
"type": "DOCUMENT",
|
|
257
|
+
"rules": {
|
|
258
|
+
"required": true
|
|
259
|
+
},
|
|
260
|
+
"meta": "affiliations",
|
|
261
|
+
"default": ""
|
|
262
|
+
},
|
|
263
|
+
"applicationStart": {
|
|
264
|
+
"label": "applicationStart",
|
|
265
|
+
"component": "DatePicker",
|
|
266
|
+
"type": "PRIMITIVE",
|
|
267
|
+
"rules": {
|
|
268
|
+
"required": true,
|
|
269
|
+
"date": true
|
|
270
|
+
},
|
|
271
|
+
"meta": "applicationStart"
|
|
272
|
+
},
|
|
273
|
+
"fellowshipStart": {
|
|
274
|
+
"label": "fellowshipStart",
|
|
275
|
+
"component": "DatePicker",
|
|
276
|
+
"type": "PRIMITIVE",
|
|
277
|
+
"rules": {
|
|
278
|
+
"required": true,
|
|
279
|
+
"date": true
|
|
280
|
+
},
|
|
281
|
+
"meta": "fellowshipStart"
|
|
282
|
+
},
|
|
283
|
+
"contact": {
|
|
284
|
+
"label": "contact",
|
|
285
|
+
"component": "TextField",
|
|
286
|
+
"type": "PRIMITIVE",
|
|
287
|
+
"rules": {
|
|
288
|
+
"required": true,
|
|
289
|
+
"email": true
|
|
290
|
+
},
|
|
291
|
+
"meta": "contact"
|
|
292
|
+
},
|
|
293
|
+
"description": {
|
|
294
|
+
"label": "description",
|
|
295
|
+
"component": "TextArea",
|
|
296
|
+
"type": "PRIMITIVE",
|
|
297
|
+
"i18n": true,
|
|
298
|
+
"rules": {
|
|
299
|
+
"required": true,
|
|
300
|
+
"min": 5,
|
|
301
|
+
"max": 200
|
|
302
|
+
},
|
|
303
|
+
"meta": "description"
|
|
304
|
+
},
|
|
305
|
+
"disciplines": {
|
|
306
|
+
"label": "disciplines",
|
|
307
|
+
"component": "DisciplinePicker",
|
|
308
|
+
"type": "DOCUMENT",
|
|
309
|
+
"rules": {
|
|
310
|
+
"required": true,
|
|
311
|
+
"min": 5,
|
|
312
|
+
"max": 200
|
|
313
|
+
},
|
|
314
|
+
"meta": "disciplines",
|
|
315
|
+
"default": ""
|
|
316
|
+
},
|
|
317
|
+
"fellowshipType": {
|
|
318
|
+
"label": "fellowshipType",
|
|
319
|
+
"component": "Select",
|
|
320
|
+
"type": "PRIMITIVE",
|
|
321
|
+
"rules": {
|
|
322
|
+
"required": true,
|
|
323
|
+
"min": 5,
|
|
324
|
+
"max": 200
|
|
325
|
+
},
|
|
326
|
+
"items": {
|
|
327
|
+
"ShortStay": "SHORT_STAY",
|
|
328
|
+
"LongStay": "LONG_STAY",
|
|
329
|
+
"InGroup": "IN_GROUP"
|
|
330
|
+
},
|
|
331
|
+
"meta": "fellowshipType"
|
|
332
|
+
},
|
|
333
|
+
"fellowshipDetails": {
|
|
334
|
+
"label": "details",
|
|
335
|
+
"component": "ObjectContainerPanel",
|
|
336
|
+
"type": "OBJECT",
|
|
337
|
+
"rules": {
|
|
338
|
+
"required": true
|
|
339
|
+
},
|
|
340
|
+
"meta": "details",
|
|
341
|
+
"items": {
|
|
342
|
+
"type": {
|
|
343
|
+
"label": "type",
|
|
344
|
+
"component": "TextArea",
|
|
345
|
+
"type": "PRIMITIVE",
|
|
346
|
+
"i18n": true,
|
|
347
|
+
"rules": {
|
|
348
|
+
"required": true
|
|
349
|
+
},
|
|
350
|
+
"meta": "type"
|
|
351
|
+
},
|
|
352
|
+
"fundingPeriod": {
|
|
353
|
+
"label": "fundingPeriod",
|
|
354
|
+
"component": "TextArea",
|
|
355
|
+
"type": "PRIMITIVE",
|
|
356
|
+
"i18n": true,
|
|
357
|
+
"rules": {
|
|
358
|
+
"required": true
|
|
359
|
+
},
|
|
360
|
+
"meta": "fundingPeriod"
|
|
361
|
+
},
|
|
362
|
+
"profile": {
|
|
363
|
+
"label": "profile",
|
|
364
|
+
"component": "Checkbox",
|
|
365
|
+
"type": "PRIMITIVE",
|
|
366
|
+
"i18n": true,
|
|
367
|
+
"rules": {
|
|
368
|
+
"required": true
|
|
369
|
+
},
|
|
370
|
+
"meta": "profile"
|
|
371
|
+
},
|
|
372
|
+
"tasks": {
|
|
373
|
+
"label": "tasks",
|
|
374
|
+
"component": "TextArea",
|
|
375
|
+
"type": "PRIMITIVE",
|
|
376
|
+
"i18n": true,
|
|
377
|
+
"rules": {
|
|
378
|
+
"required": true
|
|
379
|
+
},
|
|
380
|
+
"meta": "tasks"
|
|
381
|
+
},
|
|
382
|
+
"location": {
|
|
383
|
+
"label": "location",
|
|
384
|
+
"component": "TextArea",
|
|
385
|
+
"type": "ARRAY",
|
|
386
|
+
"i18n": true,
|
|
387
|
+
"rules": {
|
|
388
|
+
"required": true
|
|
389
|
+
},
|
|
390
|
+
"meta": "location",
|
|
391
|
+
"items": {
|
|
392
|
+
"name": {
|
|
393
|
+
"label": "name",
|
|
394
|
+
"component": "TextField",
|
|
395
|
+
"type": "PRIMITIVE",
|
|
396
|
+
"rules": {
|
|
397
|
+
"required": true,
|
|
398
|
+
"min": 5,
|
|
399
|
+
"max": 200
|
|
400
|
+
},
|
|
401
|
+
"meta": "name"
|
|
402
|
+
},
|
|
403
|
+
"details": {
|
|
404
|
+
"label": "details",
|
|
405
|
+
"component": "TextArea",
|
|
406
|
+
"type": "PRIMITIVE",
|
|
407
|
+
"rules": {
|
|
408
|
+
"required": true,
|
|
409
|
+
"min": 5,
|
|
410
|
+
"max": 200
|
|
411
|
+
},
|
|
412
|
+
"meta": "details"
|
|
413
|
+
},
|
|
414
|
+
"alt": {
|
|
415
|
+
"label": "alt",
|
|
416
|
+
"component": "TextArea",
|
|
417
|
+
"type": "PRIMITIVE",
|
|
418
|
+
"rules": {
|
|
419
|
+
"required": true,
|
|
420
|
+
"min": 5,
|
|
421
|
+
"max": 200
|
|
422
|
+
},
|
|
423
|
+
"meta": "alt"
|
|
424
|
+
},
|
|
425
|
+
"street": {
|
|
426
|
+
"label": "street",
|
|
427
|
+
"component": "TextField",
|
|
428
|
+
"type": "PRIMITIVE",
|
|
429
|
+
"rules": {
|
|
430
|
+
"required": true,
|
|
431
|
+
"max": 200
|
|
432
|
+
},
|
|
433
|
+
"meta": "street"
|
|
434
|
+
},
|
|
435
|
+
"city": {
|
|
436
|
+
"label": "city",
|
|
437
|
+
"component": "TextField",
|
|
438
|
+
"type": "PRIMITIVE",
|
|
439
|
+
"rules": {
|
|
440
|
+
"required": true,
|
|
441
|
+
"max": 200
|
|
442
|
+
},
|
|
443
|
+
"meta": "city"
|
|
444
|
+
},
|
|
445
|
+
"country": {
|
|
446
|
+
"label": "country",
|
|
447
|
+
"component": "AutoComplete",
|
|
448
|
+
"type": "PRIMITIVE",
|
|
449
|
+
"meta": "country"
|
|
450
|
+
},
|
|
451
|
+
"zip": {
|
|
452
|
+
"label": "zip",
|
|
453
|
+
"component": "TextField",
|
|
454
|
+
"type": "PRIMITIVE",
|
|
455
|
+
"rules": {
|
|
456
|
+
"required": true,
|
|
457
|
+
"min": 5,
|
|
458
|
+
"max": 200
|
|
459
|
+
},
|
|
460
|
+
"meta": "zip"
|
|
461
|
+
},
|
|
462
|
+
"geocode": {
|
|
463
|
+
"label": "geocode",
|
|
464
|
+
"component": "LocationPicker",
|
|
465
|
+
"type": "OBJECT",
|
|
466
|
+
"rules": {
|
|
467
|
+
"required": true,
|
|
468
|
+
"min": 5,
|
|
469
|
+
"max": 200
|
|
470
|
+
},
|
|
471
|
+
"items": {
|
|
472
|
+
"lat": {
|
|
473
|
+
"label": "latitude",
|
|
474
|
+
"component": "TextField",
|
|
475
|
+
"type": "PRIMITIVE",
|
|
476
|
+
"rules": {
|
|
477
|
+
"required": true,
|
|
478
|
+
"min": 5,
|
|
479
|
+
"max": 200
|
|
480
|
+
},
|
|
481
|
+
"meta": "latitude"
|
|
482
|
+
},
|
|
483
|
+
"lng": {
|
|
484
|
+
"label": "longitude",
|
|
485
|
+
"component": "TextField",
|
|
486
|
+
"type": "PRIMITIVE",
|
|
487
|
+
"rules": {
|
|
488
|
+
"required": true,
|
|
489
|
+
"min": 5,
|
|
490
|
+
"max": 200
|
|
491
|
+
},
|
|
492
|
+
"meta": "longitude"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"meta": "geocode"
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"funding": {
|
|
500
|
+
"label": "funding",
|
|
501
|
+
"component": "TextArea",
|
|
502
|
+
"type": "PRIMITIVE",
|
|
503
|
+
"i18n": true,
|
|
504
|
+
"rules": {
|
|
505
|
+
"required": true
|
|
506
|
+
},
|
|
507
|
+
"meta": "funding"
|
|
508
|
+
},
|
|
509
|
+
"housing": {
|
|
510
|
+
"label": "housing",
|
|
511
|
+
"component": "TextArea",
|
|
512
|
+
"type": "PRIMITIVE",
|
|
513
|
+
"i18n": true,
|
|
514
|
+
"rules": {
|
|
515
|
+
"required": true,
|
|
516
|
+
"min": 5,
|
|
517
|
+
"max": 200
|
|
518
|
+
},
|
|
519
|
+
"meta": "housing"
|
|
520
|
+
},
|
|
521
|
+
"meals": {
|
|
522
|
+
"label": "meals",
|
|
523
|
+
"component": "TextArea",
|
|
524
|
+
"type": "PRIMITIVE",
|
|
525
|
+
"i18n": true,
|
|
526
|
+
"rules": {
|
|
527
|
+
"required": true,
|
|
528
|
+
"min": 5,
|
|
529
|
+
"max": 200
|
|
530
|
+
},
|
|
531
|
+
"meta": "meals"
|
|
532
|
+
},
|
|
533
|
+
"applicationMaterials": {
|
|
534
|
+
"label": "applicationMaterials",
|
|
535
|
+
"component": "TextArea",
|
|
536
|
+
"type": "PRIMITIVE",
|
|
537
|
+
"i18n": true,
|
|
538
|
+
"rules": {
|
|
539
|
+
"required": true,
|
|
540
|
+
"min": 5,
|
|
541
|
+
"max": 200
|
|
542
|
+
},
|
|
543
|
+
"meta": "applicationMaterials"
|
|
544
|
+
},
|
|
545
|
+
"selectionProcess": {
|
|
546
|
+
"label": "selectionProcess",
|
|
547
|
+
"component": "TextArea",
|
|
548
|
+
"type": "PRIMITIVE",
|
|
549
|
+
"i18n": true,
|
|
550
|
+
"rules": {
|
|
551
|
+
"required": true,
|
|
552
|
+
"min": 5,
|
|
553
|
+
"max": 200
|
|
554
|
+
},
|
|
555
|
+
"meta": "selectionProcess"
|
|
556
|
+
},
|
|
557
|
+
"researchSupport": {
|
|
558
|
+
"label": "researchSupport",
|
|
559
|
+
"component": "TextArea",
|
|
560
|
+
"type": "PRIMITIVE",
|
|
561
|
+
"i18n": true,
|
|
562
|
+
"rules": {
|
|
563
|
+
"required": true,
|
|
564
|
+
"min": 5,
|
|
565
|
+
"max": 200
|
|
566
|
+
},
|
|
567
|
+
"meta": "researchSupport"
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"fellows": {
|
|
572
|
+
"label": "fellows",
|
|
573
|
+
"component": "CollectionContainerPanel",
|
|
574
|
+
"type": "ARRAY",
|
|
575
|
+
"rules": {
|
|
576
|
+
"required": true,
|
|
577
|
+
"min": 5,
|
|
578
|
+
"max": 200
|
|
579
|
+
},
|
|
580
|
+
"meta": "fellows",
|
|
581
|
+
"items": {
|
|
582
|
+
"firstname": {
|
|
583
|
+
"label": "firstname",
|
|
584
|
+
"component": "TextField",
|
|
585
|
+
"type": "PRIMITIVE",
|
|
586
|
+
"rules": {
|
|
587
|
+
"required": true,
|
|
588
|
+
"min": 1,
|
|
589
|
+
"max": 200
|
|
590
|
+
},
|
|
591
|
+
"meta": "firstname"
|
|
592
|
+
},
|
|
593
|
+
"lastname": {
|
|
594
|
+
"label": "lastname",
|
|
595
|
+
"component": "TextField",
|
|
596
|
+
"type": "PRIMITIVE",
|
|
597
|
+
"rules": {
|
|
598
|
+
"required": true,
|
|
599
|
+
"min": 1,
|
|
600
|
+
"max": 200
|
|
601
|
+
},
|
|
602
|
+
"meta": "lastname"
|
|
603
|
+
},
|
|
604
|
+
"biography": {
|
|
605
|
+
"label": "biography",
|
|
606
|
+
"component": "TextArea",
|
|
607
|
+
"i18n": true,
|
|
608
|
+
"type": "PRIMITIVE",
|
|
609
|
+
"rules": {
|
|
610
|
+
"required": true,
|
|
611
|
+
"min": 5,
|
|
612
|
+
"max": 500
|
|
613
|
+
},
|
|
614
|
+
"meta": "biography",
|
|
615
|
+
"transformers": [
|
|
616
|
+
"OPTIONS"
|
|
617
|
+
]
|
|
618
|
+
},
|
|
619
|
+
"image": {
|
|
620
|
+
"label": "image",
|
|
621
|
+
"component": "ImagePicker",
|
|
622
|
+
"type": "DOCUMENT",
|
|
623
|
+
"meta": "image",
|
|
624
|
+
"default": ""
|
|
625
|
+
},
|
|
626
|
+
"experiences": {
|
|
627
|
+
"label": "experiences",
|
|
628
|
+
"component": "CollectionContainerPanel",
|
|
629
|
+
"type": "ARRAY",
|
|
630
|
+
"items": {
|
|
631
|
+
"experiences": {
|
|
632
|
+
"label": "experiences",
|
|
633
|
+
"component": "ObjectContainerPanel",
|
|
634
|
+
"type": "OBJECT",
|
|
635
|
+
"meta": "experiences",
|
|
636
|
+
"items": {
|
|
637
|
+
"affiliation": {
|
|
638
|
+
"label": "affiliation",
|
|
639
|
+
"component": "DocumentPicker",
|
|
640
|
+
"type": "DOCUMENT",
|
|
641
|
+
"meta": "affiliation",
|
|
642
|
+
"rules": {
|
|
643
|
+
"required": true
|
|
644
|
+
},
|
|
645
|
+
"default": ""
|
|
646
|
+
},
|
|
647
|
+
"positions": {
|
|
648
|
+
"label": "positions",
|
|
649
|
+
"component": "CollectionContainerPanel",
|
|
650
|
+
"type": "ARRAY",
|
|
651
|
+
"meta": "positions",
|
|
652
|
+
"items": {
|
|
653
|
+
"positions": {
|
|
654
|
+
"label": "position",
|
|
655
|
+
"component": "ObjectContainerPanel",
|
|
656
|
+
"type": "OBJECT",
|
|
657
|
+
"meta": "position",
|
|
658
|
+
"items": {
|
|
659
|
+
"role": {
|
|
660
|
+
"label": "role",
|
|
661
|
+
"component": "TextField",
|
|
662
|
+
"type": "PRIMITIVE",
|
|
663
|
+
"rules": {
|
|
664
|
+
"required": true,
|
|
665
|
+
"min": 2,
|
|
666
|
+
"max": 200
|
|
667
|
+
},
|
|
668
|
+
"meta": "role"
|
|
669
|
+
},
|
|
670
|
+
"department": {
|
|
671
|
+
"label": "department",
|
|
672
|
+
"component": "TextField",
|
|
673
|
+
"type": "PRIMITIVE",
|
|
674
|
+
"rules": {
|
|
675
|
+
"required": true,
|
|
676
|
+
"min": 3,
|
|
677
|
+
"max": 200
|
|
678
|
+
},
|
|
679
|
+
"meta": "department"
|
|
680
|
+
},
|
|
681
|
+
"start": {
|
|
682
|
+
"label": "start",
|
|
683
|
+
"component": "DatePicker",
|
|
684
|
+
"type": "PRIMITIVE",
|
|
685
|
+
"rules": {
|
|
686
|
+
"required": true,
|
|
687
|
+
"date": true
|
|
688
|
+
},
|
|
689
|
+
"meta": "start"
|
|
690
|
+
},
|
|
691
|
+
"stop": {
|
|
692
|
+
"label": "stop",
|
|
693
|
+
"component": "DatePicker",
|
|
694
|
+
"type": "PRIMITIVE",
|
|
695
|
+
"hint": "Leave empty if this is an ongoing position",
|
|
696
|
+
"rules": {
|
|
697
|
+
"date": true
|
|
698
|
+
},
|
|
699
|
+
"meta": "stop"
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"socials": {
|
|
710
|
+
"label": "socials",
|
|
711
|
+
"component": "ObjectKeyPairContainer",
|
|
712
|
+
"type": "OBJECT",
|
|
713
|
+
"meta": "socials",
|
|
714
|
+
"items": {
|
|
715
|
+
"website": {
|
|
716
|
+
"label": "website",
|
|
717
|
+
"type": "PRIMITIVE",
|
|
718
|
+
"component": "TextField",
|
|
719
|
+
"rules": {
|
|
720
|
+
"url": true
|
|
721
|
+
},
|
|
722
|
+
"meta": "website"
|
|
723
|
+
},
|
|
724
|
+
"wikipedia": {
|
|
725
|
+
"label": "wikipedia",
|
|
726
|
+
"type": "PRIMITIVE",
|
|
727
|
+
"component": "TextField",
|
|
728
|
+
"rules": {
|
|
729
|
+
"url": true
|
|
730
|
+
},
|
|
731
|
+
"meta": "wikipedia"
|
|
732
|
+
},
|
|
733
|
+
"orcid": {
|
|
734
|
+
"label": "orcid",
|
|
735
|
+
"type": "PRIMITIVE",
|
|
736
|
+
"component": "TextField",
|
|
737
|
+
"rules": {
|
|
738
|
+
"orcid": true
|
|
739
|
+
},
|
|
740
|
+
"meta": "orcid"
|
|
741
|
+
},
|
|
742
|
+
"scholar": {
|
|
743
|
+
"label": "scholar",
|
|
744
|
+
"type": "PRIMITIVE",
|
|
745
|
+
"component": "TextField",
|
|
746
|
+
"rules": {
|
|
747
|
+
"url": true
|
|
748
|
+
},
|
|
749
|
+
"meta": "scholar"
|
|
750
|
+
},
|
|
751
|
+
"researchgate": {
|
|
752
|
+
"label": "researchgate",
|
|
753
|
+
"type": "PRIMITIVE",
|
|
754
|
+
"component": "TextField",
|
|
755
|
+
"rules": {
|
|
756
|
+
"url": true
|
|
757
|
+
},
|
|
758
|
+
"meta": "researchgate"
|
|
759
|
+
},
|
|
760
|
+
"mendeley": {
|
|
761
|
+
"label": "mendeley",
|
|
762
|
+
"type": "PRIMITIVE",
|
|
763
|
+
"component": "TextField",
|
|
764
|
+
"rules": {
|
|
765
|
+
"url": true
|
|
766
|
+
},
|
|
767
|
+
"meta": "mendeley"
|
|
768
|
+
},
|
|
769
|
+
"idRef": {
|
|
770
|
+
"label": "idRef",
|
|
771
|
+
"type": "PRIMITIVE",
|
|
772
|
+
"component": "TextField",
|
|
773
|
+
"rules": {
|
|
774
|
+
"url": true
|
|
775
|
+
},
|
|
776
|
+
"meta": "idRef"
|
|
777
|
+
},
|
|
778
|
+
"twitter": {
|
|
779
|
+
"label": "twitter",
|
|
780
|
+
"type": "PRIMITIVE",
|
|
781
|
+
"component": "TextField",
|
|
782
|
+
"rules": {
|
|
783
|
+
"url": true
|
|
784
|
+
},
|
|
785
|
+
"meta": "twitter"
|
|
786
|
+
},
|
|
787
|
+
"linkedin": {
|
|
788
|
+
"label": "linkedin",
|
|
789
|
+
"type": "PRIMITIVE",
|
|
790
|
+
"component": "TextField",
|
|
791
|
+
"rules": {
|
|
792
|
+
"url": true
|
|
793
|
+
},
|
|
794
|
+
"meta": "linkedin"
|
|
795
|
+
},
|
|
796
|
+
"bluesky": {
|
|
797
|
+
"label": "bluesky",
|
|
798
|
+
"type": "PRIMITIVE",
|
|
799
|
+
"component": "TextField",
|
|
800
|
+
"rules": {
|
|
801
|
+
"url": true
|
|
802
|
+
},
|
|
803
|
+
"meta": "bluesky"
|
|
804
|
+
},
|
|
805
|
+
"instagram": {
|
|
806
|
+
"label": "instagram",
|
|
807
|
+
"type": "PRIMITIVE",
|
|
808
|
+
"component": "TextField",
|
|
809
|
+
"rules": {
|
|
810
|
+
"url": true
|
|
811
|
+
},
|
|
812
|
+
"meta": "instagram"
|
|
813
|
+
},
|
|
814
|
+
"youtube": {
|
|
815
|
+
"label": "youtube",
|
|
816
|
+
"type": "PRIMITIVE",
|
|
817
|
+
"component": "TextField",
|
|
818
|
+
"rules": {
|
|
819
|
+
"url": true
|
|
820
|
+
},
|
|
821
|
+
"meta": "youtube"
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"disciplines": {
|
|
826
|
+
"label": "disciplines",
|
|
827
|
+
"component": "DocumentPicker",
|
|
828
|
+
"type": "DOCUMENT",
|
|
829
|
+
"meta": "disciplines",
|
|
830
|
+
"default": ""
|
|
831
|
+
},
|
|
832
|
+
"video": {
|
|
833
|
+
"label": "videos",
|
|
834
|
+
"component": "CollectionContainerPanel",
|
|
835
|
+
"type": "ARRAY",
|
|
836
|
+
"meta": "video",
|
|
837
|
+
"items": {
|
|
838
|
+
"video": {
|
|
839
|
+
"label": "video",
|
|
840
|
+
"component": "ObjectCollapsiblePanel",
|
|
841
|
+
"type": "OBJECT",
|
|
842
|
+
"meta": "video",
|
|
843
|
+
"items": {
|
|
844
|
+
"url": {
|
|
845
|
+
"type": "PRIMITIVE",
|
|
846
|
+
"component": "TextField",
|
|
847
|
+
"label": "url",
|
|
848
|
+
"description": "The url where the image is fetched from",
|
|
849
|
+
"rules": {
|
|
850
|
+
"required": true,
|
|
851
|
+
"url": true,
|
|
852
|
+
"max": 2048
|
|
853
|
+
},
|
|
854
|
+
"meta": "url"
|
|
855
|
+
},
|
|
856
|
+
"caption": {
|
|
857
|
+
"label": "caption",
|
|
858
|
+
"type": "PRIMITIVE",
|
|
859
|
+
"component": "TextField",
|
|
860
|
+
"i18n": true,
|
|
861
|
+
"rules": {
|
|
862
|
+
"required": true,
|
|
863
|
+
"min": 2,
|
|
864
|
+
"max": 100
|
|
865
|
+
},
|
|
866
|
+
"meta": "caption"
|
|
867
|
+
},
|
|
868
|
+
"alt": {
|
|
869
|
+
"label": "alt",
|
|
870
|
+
"type": "PRIMITIVE",
|
|
871
|
+
"i18n": true,
|
|
872
|
+
"component": "TextField",
|
|
873
|
+
"description": "Displayed if the image cannot be loaded",
|
|
874
|
+
"rules": {
|
|
875
|
+
"max": 200
|
|
876
|
+
},
|
|
877
|
+
"meta": "alt"
|
|
878
|
+
},
|
|
879
|
+
"copyright": {
|
|
880
|
+
"label": "copyright",
|
|
881
|
+
"type": "PRIMITIVE",
|
|
882
|
+
"component": "TextField",
|
|
883
|
+
"default": "Free of rights",
|
|
884
|
+
"description": "Owner of the image copyright",
|
|
885
|
+
"meta": "copyright"
|
|
886
|
+
},
|
|
887
|
+
"licence": {
|
|
888
|
+
"label": "licence",
|
|
889
|
+
"type": "PRIMITIVE",
|
|
890
|
+
"component": "TextField",
|
|
891
|
+
"default": null,
|
|
892
|
+
"description": "The licence of the video",
|
|
893
|
+
"meta": "licence"
|
|
894
|
+
},
|
|
895
|
+
"licenseUrl": {
|
|
896
|
+
"label": "licenseUrl",
|
|
897
|
+
"type": "PRIMITIVE",
|
|
898
|
+
"component": "TextField",
|
|
899
|
+
"default": null,
|
|
900
|
+
"description": "The caption of the video",
|
|
901
|
+
"rules": {
|
|
902
|
+
"url": true
|
|
903
|
+
},
|
|
904
|
+
"show": {
|
|
905
|
+
"default": false,
|
|
906
|
+
"switchIf": [],
|
|
907
|
+
"disjonctive": false
|
|
908
|
+
},
|
|
909
|
+
"meta": "licenseUrl"
|
|
910
|
+
},
|
|
911
|
+
"backgroundColor": {
|
|
912
|
+
"label": "backgroundColor",
|
|
913
|
+
"type": "PRIMITIVE",
|
|
914
|
+
"component": "ColorPicker",
|
|
915
|
+
"default": null,
|
|
916
|
+
"rules": {
|
|
917
|
+
"color": true
|
|
918
|
+
},
|
|
919
|
+
"show": {
|
|
920
|
+
"default": false,
|
|
921
|
+
"switchIf": [],
|
|
922
|
+
"disjonctive": false
|
|
923
|
+
},
|
|
924
|
+
"meta": "backgroundColor"
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
},
|
|
930
|
+
"related": {
|
|
931
|
+
"label": "related",
|
|
932
|
+
"component": "ObjectContainerPanel",
|
|
933
|
+
"type": "OBJECT",
|
|
934
|
+
"rules": {
|
|
935
|
+
"required": true,
|
|
936
|
+
"min": 5,
|
|
937
|
+
"max": 200
|
|
938
|
+
},
|
|
939
|
+
"meta": "related",
|
|
940
|
+
"items": {
|
|
941
|
+
"events": {
|
|
942
|
+
"label": "relatedEvent",
|
|
943
|
+
"component": "DocumentPicker",
|
|
944
|
+
"type": "DOCUMENT",
|
|
945
|
+
"meta": "event",
|
|
946
|
+
"default": ""
|
|
947
|
+
},
|
|
948
|
+
"news": {
|
|
949
|
+
"label": "relatedNews",
|
|
950
|
+
"component": "DocumentPicker",
|
|
951
|
+
"type": "DOCUMENT",
|
|
952
|
+
"meta": "news",
|
|
953
|
+
"default": ""
|
|
954
|
+
},
|
|
955
|
+
"people": {
|
|
956
|
+
"label": "relatedPeople",
|
|
957
|
+
"component": "DocumentPicker",
|
|
958
|
+
"type": "DOCUMENT",
|
|
959
|
+
"meta": "people",
|
|
960
|
+
"default": ""
|
|
961
|
+
},
|
|
962
|
+
"publications": {
|
|
963
|
+
"label": "relatedPublication",
|
|
964
|
+
"component": "DocumentPicker",
|
|
965
|
+
"type": "DOCUMENT",
|
|
966
|
+
"meta": "publication",
|
|
967
|
+
"default": ""
|
|
968
|
+
},
|
|
969
|
+
"projects": {
|
|
970
|
+
"label": "relatedProject",
|
|
971
|
+
"component": "DocumentPicker",
|
|
972
|
+
"type": "DOCUMENT",
|
|
973
|
+
"meta": "project",
|
|
974
|
+
"default": ""
|
|
975
|
+
},
|
|
976
|
+
"fellowships": {
|
|
977
|
+
"label": "relatedFellowships",
|
|
978
|
+
"component": "DocumentPicker",
|
|
979
|
+
"type": "DOCUMENT",
|
|
980
|
+
"meta": "fellowship",
|
|
981
|
+
"default": ""
|
|
982
|
+
}
|
|
983
|
+
}
|
|
984
|
+
},
|
|
985
|
+
"consent": {
|
|
986
|
+
"label": "consent",
|
|
987
|
+
"component": "ObjectContainerPanel",
|
|
988
|
+
"type": "OBJECT",
|
|
989
|
+
"meta": "consent",
|
|
990
|
+
"items": {
|
|
991
|
+
"data": {
|
|
992
|
+
"label": "data",
|
|
993
|
+
"component": "Checkbox",
|
|
994
|
+
"type": "PRIMITIVE",
|
|
995
|
+
"default": false,
|
|
996
|
+
"hint": "My profile will be showcased on the Paris IAS websites",
|
|
997
|
+
"meta": "data"
|
|
998
|
+
},
|
|
999
|
+
"record": {
|
|
1000
|
+
"label": "record",
|
|
1001
|
+
"component": "Checkbox",
|
|
1002
|
+
"type": "PRIMITIVE",
|
|
1003
|
+
"default": false,
|
|
1004
|
+
"hint": "Necessary if you appear in a video or audio recording",
|
|
1005
|
+
"meta": "record"
|
|
1006
|
+
},
|
|
1007
|
+
"diffusion": {
|
|
1008
|
+
"label": "diffusion",
|
|
1009
|
+
"component": "Checkbox",
|
|
1010
|
+
"type": "PRIMITIVE",
|
|
1011
|
+
"default": false,
|
|
1012
|
+
"hint": "To make available my video and audio recordings in publicaitons, news, events...",
|
|
1013
|
+
"meta": "diffusion"
|
|
1014
|
+
},
|
|
1015
|
+
"publication": {
|
|
1016
|
+
"label": "publication",
|
|
1017
|
+
"component": "Checkbox",
|
|
1018
|
+
"type": "PRIMITIVE",
|
|
1019
|
+
"default": false,
|
|
1020
|
+
"hint": "To be officially published as an academic author and provide your content with a DOI",
|
|
1021
|
+
"meta": "publication"
|
|
1022
|
+
},
|
|
1023
|
+
"email": {
|
|
1024
|
+
"label": "email",
|
|
1025
|
+
"component": "Checkbox",
|
|
1026
|
+
"type": "PRIMITIVE",
|
|
1027
|
+
"default": false,
|
|
1028
|
+
"hint": "To allow us to send you email communications in general (including newsletter)",
|
|
1029
|
+
"meta": "email"
|
|
1030
|
+
},
|
|
1031
|
+
"newsletter": {
|
|
1032
|
+
"label": "newsletter",
|
|
1033
|
+
"component": "Checkbox",
|
|
1034
|
+
"type": "PRIMITIVE",
|
|
1035
|
+
"default": false,
|
|
1036
|
+
"meta": "newsletter"
|
|
1037
|
+
},
|
|
1038
|
+
"fellowshipnewsletter": {
|
|
1039
|
+
"label": "fellowshipnewsletter",
|
|
1040
|
+
"component": "Checkbox",
|
|
1041
|
+
"type": "PRIMITIVE",
|
|
1042
|
+
"default": false,
|
|
1043
|
+
"meta": "fellowshipnewsletter"
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
"groups": {
|
|
1048
|
+
"label": "groups",
|
|
1049
|
+
"groups": [
|
|
1050
|
+
"ADMIN"
|
|
1051
|
+
],
|
|
1052
|
+
"component": "ObjectContainerPanel",
|
|
1053
|
+
"type": "OBJECT",
|
|
1054
|
+
"meta": "groups",
|
|
1055
|
+
"items": {
|
|
1056
|
+
"team": {
|
|
1057
|
+
"label": "team",
|
|
1058
|
+
"component": "Checkbox",
|
|
1059
|
+
"type": "PRIMITIVE",
|
|
1060
|
+
"meta": "team"
|
|
1061
|
+
},
|
|
1062
|
+
"sab": {
|
|
1063
|
+
"label": "sab",
|
|
1064
|
+
"component": "Checkbox",
|
|
1065
|
+
"type": "PRIMITIVE",
|
|
1066
|
+
"meta": "sab"
|
|
1067
|
+
},
|
|
1068
|
+
"board": {
|
|
1069
|
+
"label": "board",
|
|
1070
|
+
"component": "Checkbox",
|
|
1071
|
+
"type": "PRIMITIVE",
|
|
1072
|
+
"meta": "board"
|
|
1073
|
+
},
|
|
1074
|
+
"fellows": {
|
|
1075
|
+
"label": "fellows",
|
|
1076
|
+
"component": "Checkbox",
|
|
1077
|
+
"type": "PRIMITIVE",
|
|
1078
|
+
"meta": "fellow"
|
|
1079
|
+
},
|
|
1080
|
+
"sponsor": {
|
|
1081
|
+
"label": "sponsor",
|
|
1082
|
+
"component": "Checkbox",
|
|
1083
|
+
"type": "PRIMITIVE",
|
|
1084
|
+
"meta": "sponsor"
|
|
1085
|
+
},
|
|
1086
|
+
"vintage": {
|
|
1087
|
+
"label": "vintage",
|
|
1088
|
+
"component": "CollectionContainerPanel",
|
|
1089
|
+
"type": "ARRAY",
|
|
1090
|
+
"meta": "vintage",
|
|
1091
|
+
"items": {
|
|
1092
|
+
"name": {
|
|
1093
|
+
"label": "name",
|
|
1094
|
+
"type": "PRIMITIVE",
|
|
1095
|
+
"component": "TextField",
|
|
1096
|
+
"rules": {
|
|
1097
|
+
"required": true,
|
|
1098
|
+
"min": 2,
|
|
1099
|
+
"max": 100
|
|
1100
|
+
},
|
|
1101
|
+
"meta": "name"
|
|
1102
|
+
},
|
|
1103
|
+
"year": {
|
|
1104
|
+
"label": "year",
|
|
1105
|
+
"type": "PRIMITIVE",
|
|
1106
|
+
"component": "TextField",
|
|
1107
|
+
"rules": {
|
|
1108
|
+
"required": true,
|
|
1109
|
+
"min": 2,
|
|
1110
|
+
"max": 100
|
|
1111
|
+
},
|
|
1112
|
+
"meta": "year"
|
|
1113
|
+
},
|
|
1114
|
+
"theme": {
|
|
1115
|
+
"label": "theme",
|
|
1116
|
+
"type": "PRIMITIVE",
|
|
1117
|
+
"component": "TextField",
|
|
1118
|
+
"i18n": true,
|
|
1119
|
+
"rules": {
|
|
1120
|
+
"required": true,
|
|
1121
|
+
"min": 2,
|
|
1122
|
+
"max": 100
|
|
1123
|
+
},
|
|
1124
|
+
"meta": "theme"
|
|
1125
|
+
},
|
|
1126
|
+
"url": {
|
|
1127
|
+
"type": "PRIMITIVE",
|
|
1128
|
+
"component": "TextField",
|
|
1129
|
+
"label": "url",
|
|
1130
|
+
"rules": {
|
|
1131
|
+
"required": true,
|
|
1132
|
+
"url": true,
|
|
1133
|
+
"max": 2048
|
|
1134
|
+
},
|
|
1135
|
+
"meta": "url"
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
},
|
|
1143
|
+
"gallery": {
|
|
1144
|
+
"label": "gallery",
|
|
1145
|
+
"component": "ImagePicker",
|
|
1146
|
+
"type": "DOCUMENT",
|
|
1147
|
+
"multiple": true,
|
|
1148
|
+
"meta": "gallery",
|
|
1149
|
+
"default": ""
|
|
1150
|
+
},
|
|
1151
|
+
"url": {
|
|
1152
|
+
"label": "url",
|
|
1153
|
+
"component": "TextField",
|
|
1154
|
+
"type": "PRIMITIVE",
|
|
1155
|
+
"rules": {
|
|
1156
|
+
"required": true,
|
|
1157
|
+
"url": true
|
|
1158
|
+
},
|
|
1159
|
+
"meta": "url"
|
|
1160
|
+
},
|
|
1161
|
+
"fellowshipStop": {
|
|
1162
|
+
"label": "fellowshipStop",
|
|
1163
|
+
"component": "DatePicker",
|
|
1164
|
+
"type": "PRIMITIVE",
|
|
1165
|
+
"rules": {
|
|
1166
|
+
"required": true,
|
|
1167
|
+
"date": true
|
|
1168
|
+
},
|
|
1169
|
+
"meta": "fellowshipStop"
|
|
1170
|
+
},
|
|
1171
|
+
"applicationStop": {
|
|
1172
|
+
"label": "applicationStop",
|
|
1173
|
+
"component": "DatePicker",
|
|
1174
|
+
"type": "PRIMITIVE",
|
|
1175
|
+
"rules": {
|
|
1176
|
+
"required": true,
|
|
1177
|
+
"date": true
|
|
1178
|
+
},
|
|
1179
|
+
"meta": "applicationStop"
|
|
1180
|
+
},
|
|
1181
|
+
"image": {
|
|
1182
|
+
"label": "image",
|
|
1183
|
+
"component": "ImagePicker",
|
|
1184
|
+
"type": "DOCUMENT",
|
|
1185
|
+
"rules": {
|
|
1186
|
+
"required": true
|
|
1187
|
+
},
|
|
1188
|
+
"meta": "image",
|
|
1189
|
+
"default": ""
|
|
1190
|
+
},
|
|
1191
|
+
"publicationDate": {
|
|
1192
|
+
"label": "publicationDate",
|
|
1193
|
+
"component": "DatePicker",
|
|
1194
|
+
"type": "PRIMITIVE",
|
|
1195
|
+
"rules": {
|
|
1196
|
+
"required": true,
|
|
1197
|
+
"date": true
|
|
1198
|
+
},
|
|
1199
|
+
"meta": "publicationDate"
|
|
1200
|
+
},
|
|
1201
|
+
"files": {
|
|
1202
|
+
"label": "files",
|
|
1203
|
+
"component": "FilePicker",
|
|
1204
|
+
"type": "DOCUMENT",
|
|
1205
|
+
"meta": "files",
|
|
1206
|
+
"default": ""
|
|
1207
|
+
},
|
|
1208
|
+
"video": {
|
|
1209
|
+
"label": "video",
|
|
1210
|
+
"component": "CollectionContainerPanel",
|
|
1211
|
+
"type": "ARRAY",
|
|
1212
|
+
"meta": "video",
|
|
1213
|
+
"items": {
|
|
1214
|
+
"video": {
|
|
1215
|
+
"label": "video",
|
|
1216
|
+
"component": "ObjectContainerPanel",
|
|
1217
|
+
"type": "OBJECT",
|
|
1218
|
+
"meta": "video",
|
|
1219
|
+
"items": {
|
|
1220
|
+
"url": {
|
|
1221
|
+
"type": "PRIMITIVE",
|
|
1222
|
+
"component": "TextField",
|
|
1223
|
+
"label": "url",
|
|
1224
|
+
"description": "The url where the image is fetched from",
|
|
1225
|
+
"rules": {
|
|
1226
|
+
"required": true,
|
|
1227
|
+
"url": true,
|
|
1228
|
+
"max": 2048
|
|
1229
|
+
},
|
|
1230
|
+
"meta": "url"
|
|
1231
|
+
},
|
|
1232
|
+
"caption": {
|
|
1233
|
+
"label": "caption",
|
|
1234
|
+
"type": "PRIMITIVE",
|
|
1235
|
+
"component": "TextField",
|
|
1236
|
+
"i18n": true,
|
|
1237
|
+
"rules": {
|
|
1238
|
+
"required": true,
|
|
1239
|
+
"min": 2,
|
|
1240
|
+
"max": 100
|
|
1241
|
+
},
|
|
1242
|
+
"meta": "caption"
|
|
1243
|
+
},
|
|
1244
|
+
"alt": {
|
|
1245
|
+
"label": "alt",
|
|
1246
|
+
"type": "PRIMITIVE",
|
|
1247
|
+
"i18n": true,
|
|
1248
|
+
"component": "TextField",
|
|
1249
|
+
"description": "Displayed if the image cannot be loaded",
|
|
1250
|
+
"rules": {
|
|
1251
|
+
"max": 200
|
|
1252
|
+
},
|
|
1253
|
+
"meta": "alt"
|
|
1254
|
+
},
|
|
1255
|
+
"copyright": {
|
|
1256
|
+
"label": "copyright",
|
|
1257
|
+
"type": "PRIMITIVE",
|
|
1258
|
+
"component": "TextField",
|
|
1259
|
+
"default": "Free of rights",
|
|
1260
|
+
"description": "Owner of the image copyright",
|
|
1261
|
+
"meta": "copyright"
|
|
1262
|
+
},
|
|
1263
|
+
"licence": {
|
|
1264
|
+
"label": "licence",
|
|
1265
|
+
"type": "PRIMITIVE",
|
|
1266
|
+
"component": "TextField",
|
|
1267
|
+
"default": null,
|
|
1268
|
+
"description": "The licence of the video",
|
|
1269
|
+
"meta": "licence"
|
|
1270
|
+
},
|
|
1271
|
+
"licenseUrl": {
|
|
1272
|
+
"label": "licenseUrl",
|
|
1273
|
+
"type": "PRIMITIVE",
|
|
1274
|
+
"component": "TextField",
|
|
1275
|
+
"default": null,
|
|
1276
|
+
"description": "The caption of the video",
|
|
1277
|
+
"rules": {
|
|
1278
|
+
"url": true
|
|
1279
|
+
},
|
|
1280
|
+
"show": {
|
|
1281
|
+
"default": false,
|
|
1282
|
+
"switchIf": [],
|
|
1283
|
+
"disjonctive": false
|
|
1284
|
+
},
|
|
1285
|
+
"meta": "licenseUrl"
|
|
1286
|
+
},
|
|
1287
|
+
"backgroundColor": {
|
|
1288
|
+
"label": "backgroundColor",
|
|
1289
|
+
"type": "PRIMITIVE",
|
|
1290
|
+
"component": "ColorPicker",
|
|
1291
|
+
"default": null,
|
|
1292
|
+
"rules": {
|
|
1293
|
+
"color": true
|
|
1294
|
+
},
|
|
1295
|
+
"show": {
|
|
1296
|
+
"default": false,
|
|
1297
|
+
"switchIf": [],
|
|
1298
|
+
"disjonctive": false
|
|
1299
|
+
},
|
|
1300
|
+
"meta": "backgroundColor"
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
}
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
}
|