@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.
Files changed (202) hide show
  1. package/LICENSE +679 -0
  2. package/dist/form/action.js +83 -0
  3. package/dist/form/affiliation.js +178 -0
  4. package/dist/form/apps.js +132 -0
  5. package/dist/form/disciplines.js +30 -0
  6. package/dist/form/events.js +836 -0
  7. package/dist/form/fellowships.js +1307 -0
  8. package/dist/form/files.js +30 -0
  9. package/dist/form/mailing.js +43 -0
  10. package/dist/form/news.js +252 -0
  11. package/dist/form/people.js +658 -0
  12. package/dist/form/projects.js +338 -0
  13. package/dist/form/publications.js +364 -0
  14. package/dist/form/tags.js +38 -0
  15. package/dist/form/users.js +576 -0
  16. package/dist/graphql/client/action/query.get.action.gql +22 -0
  17. package/dist/graphql/client/action/query.list.action.gql +32 -0
  18. package/dist/graphql/client/affiliation/query.get.affiliations.gql +37 -0
  19. package/dist/graphql/client/affiliation/query.list.affiliations.gql +43 -0
  20. package/dist/graphql/client/apps/query.get.apps.gql +33 -0
  21. package/dist/graphql/client/apps/query.list.apps.gql +43 -0
  22. package/dist/graphql/client/events/query.get.events.gql +119 -0
  23. package/dist/graphql/client/events/query.list.events.gql +40 -0
  24. package/dist/graphql/client/fellowships/query.get.fellowships.gql +163 -0
  25. package/dist/graphql/client/fellowships/query.list.fellowships.gql +49 -0
  26. package/dist/graphql/client/files/query.get.files.gql +24 -0
  27. package/dist/graphql/client/files/query.list.files.gql +37 -0
  28. package/dist/graphql/client/mailing/query.get.mailing.gql +24 -0
  29. package/dist/graphql/client/mailing/query.list.mailing.gql +23 -0
  30. package/dist/graphql/client/misc/apex.mutations.delete.gql +0 -0
  31. package/dist/graphql/client/misc/apex.mutations.upsert.gql +0 -0
  32. package/dist/graphql/client/misc/apex.queries.login.gql +0 -0
  33. package/dist/graphql/client/misc/query.get.disciplines.gql +17 -0
  34. package/dist/graphql/client/misc/query.get.tags.gql +13 -0
  35. package/dist/graphql/client/misc/query.list.disciplines.gql +23 -0
  36. package/dist/graphql/client/misc/query.list.tags.gql +23 -0
  37. package/dist/graphql/client/news/query.get.news.gql +128 -0
  38. package/dist/graphql/client/news/query.list.news.gql +35 -0
  39. package/dist/graphql/client/people/query.get.people.gql +173 -0
  40. package/dist/graphql/client/people/query.get.users.gql +0 -0
  41. package/dist/graphql/client/people/query.list.people.gql +55 -0
  42. package/dist/graphql/client/people/query.list.users.gql +31 -0
  43. package/dist/graphql/client/projects/query.get.projects.gql +166 -0
  44. package/dist/graphql/client/projects/query.list.projects.gql +33 -0
  45. package/dist/graphql/client/publications/query.get.publications.gql +169 -0
  46. package/dist/graphql/client/publications/query.list.publications.gql +35 -0
  47. package/dist/graphql/schemas/apex-resolvers-list.json +45 -0
  48. package/dist/graphql/schemas/schema.apex.graphql +946 -0
  49. package/dist/graphql/schemas/schema.website.graphql +794 -0
  50. package/dist/graphql/schemas/website-resolvers-list.json +22 -0
  51. package/dist/list/action.js +133 -0
  52. package/dist/list/affiliation.js +133 -0
  53. package/dist/list/apps.js +133 -0
  54. package/dist/list/disciplines.js +132 -0
  55. package/dist/list/events.js +186 -0
  56. package/dist/list/fellowships.js +149 -0
  57. package/dist/list/files.js +132 -0
  58. package/dist/list/mailing.js +132 -0
  59. package/dist/list/news.js +135 -0
  60. package/dist/list/people.js +176 -0
  61. package/dist/list/projects.js +135 -0
  62. package/dist/list/publications.js +152 -0
  63. package/dist/list/tags.js +133 -0
  64. package/dist/list/users.js +176 -0
  65. package/index.ts +63 -0
  66. package/lib/README.md +206 -0
  67. package/lib/buildClientGraphQL.ts +342 -0
  68. package/lib/buildDefaults.ts +0 -0
  69. package/lib/buildSchemas.ts +109 -0
  70. package/lib/generate.ts +505 -0
  71. package/lib/generateAll.ts +231 -0
  72. package/lib/utils.ts +24 -0
  73. package/package.json +34 -0
  74. package/readme.md +116 -0
  75. package/src/LICENSE +661 -0
  76. package/src/action/graphql/client/query.get.action.gql +22 -0
  77. package/src/action/graphql/client/query.list.action.gql +32 -0
  78. package/src/action/graphql/server/apex.types.action.graphql +15 -0
  79. package/src/action/models/action.ts +147 -0
  80. package/src/affiliation/graphql/client/query.get.affiliations.gql +37 -0
  81. package/src/affiliation/graphql/client/query.list.affiliations.gql +43 -0
  82. package/src/affiliation/graphql/server/shared.types.affiliations.graphql +20 -0
  83. package/src/affiliation/models/affiliation.ts +130 -0
  84. package/src/affiliation/models/member.ts +11 -0
  85. package/src/affiliation/models/partner.ts +9 -0
  86. package/src/apps/graphql/client/query.get.apps.gql +33 -0
  87. package/src/apps/graphql/client/query.list.apps.gql +43 -0
  88. package/src/apps/models/apps.ts +195 -0
  89. package/src/events/graphql/client/query.get.events.gql +119 -0
  90. package/src/events/graphql/client/query.list.events.gql +40 -0
  91. package/src/events/graphql/server/shared.inputs.events.graphql +24 -0
  92. package/src/events/models/eventSlot.ts +73 -0
  93. package/src/events/models/events.ts +569 -0
  94. package/src/fellowships/graphql/client/query.get.fellowships.gql +163 -0
  95. package/src/fellowships/graphql/client/query.list.fellowships.gql +49 -0
  96. package/src/fellowships/graphql/server/apex.inputs.fellowshipDetails.graphql +13 -0
  97. package/src/fellowships/graphql/server/shared.types.fellowshipDetails.graphql +13 -0
  98. package/src/fellowships/graphql/server/shared.types.fellowships.graphql +38 -0
  99. package/src/fellowships/models/fellowshipDetails.ts +145 -0
  100. package/src/fellowships/models/fellowships.ts +341 -0
  101. package/src/files/graphql/client/query.get.files.gql +24 -0
  102. package/src/files/graphql/client/query.list.files.gql +37 -0
  103. package/src/files/graphql/server/apex.inputs.files.graphql +7 -0
  104. package/src/files/graphql/server/apex.inputs.video.graphql +9 -0
  105. package/src/files/graphql/server/apex.types.files.graphql +4 -0
  106. package/src/files/graphql/server/shared.inputs.image.graphql +9 -0
  107. package/src/files/graphql/server/shared.types.files.graphql +15 -0
  108. package/src/files/graphql/server/shared.types.image.graphql +9 -0
  109. package/src/files/graphql/server/shared.types.video.graphql +9 -0
  110. package/src/files/models/files.ts +113 -0
  111. package/src/files/models/gallery.ts +11 -0
  112. package/src/files/models/image.ts +159 -0
  113. package/src/files/models/video.ts +166 -0
  114. package/src/form.ts +52 -0
  115. package/src/index.ts +98 -0
  116. package/src/list.ts +34 -0
  117. package/src/mailing/graphql/client/query.get.mailing.gql +24 -0
  118. package/src/mailing/graphql/client/query.list.mailing.gql +23 -0
  119. package/src/mailing/graphql/server/apex.types.mailing.graphql +13 -0
  120. package/src/mailing/models/mailing.ts +123 -0
  121. package/src/misc/graphql/client/apex.mutations.delete.gql +0 -0
  122. package/src/misc/graphql/client/apex.mutations.upsert.gql +0 -0
  123. package/src/misc/graphql/client/apex.queries.login.gql +0 -0
  124. package/src/misc/graphql/client/query.get.disciplines.gql +17 -0
  125. package/src/misc/graphql/client/query.get.tags.gql +13 -0
  126. package/src/misc/graphql/client/query.list.disciplines.gql +23 -0
  127. package/src/misc/graphql/client/query.list.tags.gql +23 -0
  128. package/src/misc/graphql/server/apex.inputs.misc.graphql +13 -0
  129. package/src/misc/graphql/server/apex.inputs.socials.graphql +12 -0
  130. package/src/misc/graphql/server/apex.mutations.graphql +23 -0
  131. package/src/misc/graphql/server/apex.queries.graphql +36 -0
  132. package/src/misc/graphql/server/apex.types.disciplines.graphql +4 -0
  133. package/src/misc/graphql/server/apex.types.tags.graphql +4 -0
  134. package/src/misc/graphql/server/shared.enums.graphql +112 -0
  135. package/src/misc/graphql/server/shared.inputs.misc.graphql +101 -0
  136. package/src/misc/graphql/server/shared.queries.graphql +35 -0
  137. package/src/misc/graphql/server/shared.types.disciplines.graphql +8 -0
  138. package/src/misc/graphql/server/shared.types.events.graphql +39 -0
  139. package/src/misc/graphql/server/shared.types.location.graphql +17 -0
  140. package/src/misc/graphql/server/shared.types.misc.graphql +120 -0
  141. package/src/misc/graphql/server/shared.types.related.graphql +10 -0
  142. package/src/misc/graphql/server/shared.types.relatedAffiliation.graphql +7 -0
  143. package/src/misc/graphql/server/shared.types.relatedEvent.graphql +7 -0
  144. package/src/misc/graphql/server/shared.types.relatedFellowships.graphql +7 -0
  145. package/src/misc/graphql/server/shared.types.relatedNews.graphql +7 -0
  146. package/src/misc/graphql/server/shared.types.relatedPeople.graphql +6 -0
  147. package/src/misc/graphql/server/shared.types.relatedProject.graphql +7 -0
  148. package/src/misc/graphql/server/shared.types.relatedPublications.graphql +6 -0
  149. package/src/misc/graphql/server/shared.types.socials.graphql +22 -0
  150. package/src/misc/graphql/server/shared.types.tags.graphql +11 -0
  151. package/src/misc/graphql/server/website.mutations.graphql +4 -0
  152. package/src/misc/models/disciplines.ts +116 -0
  153. package/src/misc/models/location.ts +136 -0
  154. package/src/misc/models/organizers.ts +13 -0
  155. package/src/misc/models/related.ts +123 -0
  156. package/src/misc/models/relatedEvents.ts +16 -0
  157. package/src/misc/models/relatedFellowships.ts +7 -0
  158. package/src/misc/models/relatedNews.ts +13 -0
  159. package/src/misc/models/relatedPeople.ts +8 -0
  160. package/src/misc/models/relatedProject.ts +14 -0
  161. package/src/misc/models/relatedPublications.ts +14 -0
  162. package/src/misc/models/socials.ts +133 -0
  163. package/src/misc/models/sponsor.ts +13 -0
  164. package/src/misc/models/tags.ts +116 -0
  165. package/src/misc/models/taxonomy.ts +1 -0
  166. package/src/model.ts +7 -0
  167. package/src/news/graphql/client/query.get.news.gql +128 -0
  168. package/src/news/graphql/client/query.list.news.gql +35 -0
  169. package/src/news/graphql/server/share.types.news.graphql +27 -0
  170. package/src/news/models/news.ts +257 -0
  171. package/src/people/graphql/client/query.get.people.gql +173 -0
  172. package/src/people/graphql/client/query.get.users.gql +0 -0
  173. package/src/people/graphql/client/query.list.people.gql +55 -0
  174. package/src/people/graphql/client/query.list.users.gql +31 -0
  175. package/src/people/graphql/server/apex.inputs.consent.graphql +9 -0
  176. package/src/people/graphql/server/apex.inputs.groups.graphql +8 -0
  177. package/src/people/graphql/server/apex.inputs.vintage.graphql +6 -0
  178. package/src/people/graphql/server/shared.types.consent.graphql +9 -0
  179. package/src/people/graphql/server/shared.types.groups.graphql +8 -0
  180. package/src/people/graphql/server/shared.types.people.graphql +29 -0
  181. package/src/people/graphql/server/shared.types.position.graphql +6 -0
  182. package/src/people/graphql/server/shared.types.users.graphql +17 -0
  183. package/src/people/graphql/server/shared.types.vintage.graphql +6 -0
  184. package/src/people/models/consent.ts +82 -0
  185. package/src/people/models/discussants.ts +9 -0
  186. package/src/people/models/experiences.ts +38 -0
  187. package/src/people/models/fellows.ts +12 -0
  188. package/src/people/models/groups.ts +58 -0
  189. package/src/people/models/people.ts +244 -0
  190. package/src/people/models/position.ts +62 -0
  191. package/src/people/models/speakers.ts +9 -0
  192. package/src/people/models/users.ts +252 -0
  193. package/src/people/models/vintage.ts +124 -0
  194. package/src/projects/graphql/client/query.get.projects.gql +166 -0
  195. package/src/projects/graphql/client/query.list.projects.gql +33 -0
  196. package/src/projects/graphql/server/shared.types.projects.graphql +29 -0
  197. package/src/projects/models/projects.ts +249 -0
  198. package/src/publications/graphql/client/query.get.publications.gql +169 -0
  199. package/src/publications/graphql/client/query.list.publications.gql +35 -0
  200. package/src/publications/graphql/server/shared.types.publications.graphql +34 -0
  201. package/src/publications/models/article.ts +262 -0
  202. package/src/publications/models/publications.ts +306 -0
@@ -0,0 +1,658 @@
1
+ export default {
2
+ "_defaults": {
3
+ "firstname": "",
4
+ "lastname": "",
5
+ "biography": {
6
+ "en": "",
7
+ "fr": ""
8
+ },
9
+ "image": "",
10
+ "experiences": [
11
+ {
12
+ "experiences": {
13
+ "affiliation": "",
14
+ "positions": [
15
+ {
16
+ "positions": {
17
+ "role": "",
18
+ "department": "",
19
+ "start": "",
20
+ "stop": ""
21
+ }
22
+ }
23
+ ]
24
+ }
25
+ }
26
+ ],
27
+ "socials": {
28
+ "website": "",
29
+ "wikipedia": "",
30
+ "orcid": "",
31
+ "scholar": "",
32
+ "researchgate": "",
33
+ "mendeley": "",
34
+ "idRef": "",
35
+ "twitter": "",
36
+ "linkedin": "",
37
+ "bluesky": "",
38
+ "instagram": "",
39
+ "youtube": ""
40
+ },
41
+ "disciplines": "",
42
+ "video": [
43
+ {
44
+ "video": {
45
+ "url": "",
46
+ "caption": {
47
+ "en": "",
48
+ "fr": ""
49
+ },
50
+ "alt": {
51
+ "en": "",
52
+ "fr": ""
53
+ },
54
+ "copyright": "Free of rights",
55
+ "licence": "",
56
+ "licenseUrl": "",
57
+ "backgroundColor": ""
58
+ }
59
+ }
60
+ ],
61
+ "related": {
62
+ "events": "",
63
+ "news": "",
64
+ "people": "",
65
+ "publications": "",
66
+ "projects": "",
67
+ "fellowships": ""
68
+ },
69
+ "consent": {
70
+ "data": false,
71
+ "record": false,
72
+ "diffusion": false,
73
+ "publication": false,
74
+ "email": false,
75
+ "newsletter": false,
76
+ "fellowshipnewsletter": false
77
+ },
78
+ "groups": {
79
+ "team": false,
80
+ "sab": false,
81
+ "board": false,
82
+ "fellows": false,
83
+ "sponsor": false,
84
+ "vintage": [
85
+ {
86
+ "name": "",
87
+ "year": "",
88
+ "theme": {
89
+ "en": "",
90
+ "fr": ""
91
+ },
92
+ "url": ""
93
+ }
94
+ ]
95
+ }
96
+ },
97
+ "schema": {
98
+ "firstname": {
99
+ "label": "firstname",
100
+ "component": "TextField",
101
+ "type": "PRIMITIVE",
102
+ "rules": {
103
+ "required": true,
104
+ "min": 1,
105
+ "max": 200
106
+ },
107
+ "meta": "firstname"
108
+ },
109
+ "lastname": {
110
+ "label": "lastname",
111
+ "component": "TextField",
112
+ "type": "PRIMITIVE",
113
+ "rules": {
114
+ "required": true,
115
+ "min": 1,
116
+ "max": 200
117
+ },
118
+ "meta": "lastname"
119
+ },
120
+ "biography": {
121
+ "label": "biography",
122
+ "component": "TextArea",
123
+ "i18n": true,
124
+ "type": "PRIMITIVE",
125
+ "rules": {
126
+ "required": true,
127
+ "min": 5,
128
+ "max": 500
129
+ },
130
+ "meta": "biography",
131
+ "transformers": [
132
+ "OPTIONS"
133
+ ]
134
+ },
135
+ "image": {
136
+ "label": "image",
137
+ "component": "ImagePicker",
138
+ "type": "DOCUMENT",
139
+ "meta": "image",
140
+ "default": ""
141
+ },
142
+ "experiences": {
143
+ "label": "experiences",
144
+ "component": "CollectionContainerPanel",
145
+ "type": "ARRAY",
146
+ "items": {
147
+ "experiences": {
148
+ "label": "experiences",
149
+ "component": "ObjectContainerPanel",
150
+ "type": "OBJECT",
151
+ "meta": "experiences",
152
+ "items": {
153
+ "affiliation": {
154
+ "label": "affiliation",
155
+ "component": "DocumentPicker",
156
+ "type": "DOCUMENT",
157
+ "meta": "affiliation",
158
+ "rules": {
159
+ "required": true
160
+ },
161
+ "default": ""
162
+ },
163
+ "positions": {
164
+ "label": "positions",
165
+ "component": "CollectionContainerPanel",
166
+ "type": "ARRAY",
167
+ "meta": "positions",
168
+ "items": {
169
+ "positions": {
170
+ "label": "position",
171
+ "component": "ObjectContainerPanel",
172
+ "type": "OBJECT",
173
+ "meta": "position",
174
+ "items": {
175
+ "role": {
176
+ "label": "role",
177
+ "component": "TextField",
178
+ "type": "PRIMITIVE",
179
+ "rules": {
180
+ "required": true,
181
+ "min": 2,
182
+ "max": 200
183
+ },
184
+ "meta": "role"
185
+ },
186
+ "department": {
187
+ "label": "department",
188
+ "component": "TextField",
189
+ "type": "PRIMITIVE",
190
+ "rules": {
191
+ "required": true,
192
+ "min": 3,
193
+ "max": 200
194
+ },
195
+ "meta": "department"
196
+ },
197
+ "start": {
198
+ "label": "start",
199
+ "component": "DatePicker",
200
+ "type": "PRIMITIVE",
201
+ "rules": {
202
+ "required": true,
203
+ "date": true
204
+ },
205
+ "meta": "start"
206
+ },
207
+ "stop": {
208
+ "label": "stop",
209
+ "component": "DatePicker",
210
+ "type": "PRIMITIVE",
211
+ "hint": "Leave empty if this is an ongoing position",
212
+ "rules": {
213
+ "date": true
214
+ },
215
+ "meta": "stop"
216
+ }
217
+ }
218
+ }
219
+ }
220
+ }
221
+ }
222
+ }
223
+ }
224
+ },
225
+ "socials": {
226
+ "label": "socials",
227
+ "component": "ObjectKeyPairContainer",
228
+ "type": "OBJECT",
229
+ "meta": "socials",
230
+ "items": {
231
+ "website": {
232
+ "label": "website",
233
+ "type": "PRIMITIVE",
234
+ "component": "TextField",
235
+ "rules": {
236
+ "url": true
237
+ },
238
+ "meta": "website"
239
+ },
240
+ "wikipedia": {
241
+ "label": "wikipedia",
242
+ "type": "PRIMITIVE",
243
+ "component": "TextField",
244
+ "rules": {
245
+ "url": true
246
+ },
247
+ "meta": "wikipedia"
248
+ },
249
+ "orcid": {
250
+ "label": "orcid",
251
+ "type": "PRIMITIVE",
252
+ "component": "TextField",
253
+ "rules": {
254
+ "orcid": true
255
+ },
256
+ "meta": "orcid"
257
+ },
258
+ "scholar": {
259
+ "label": "scholar",
260
+ "type": "PRIMITIVE",
261
+ "component": "TextField",
262
+ "rules": {
263
+ "url": true
264
+ },
265
+ "meta": "scholar"
266
+ },
267
+ "researchgate": {
268
+ "label": "researchgate",
269
+ "type": "PRIMITIVE",
270
+ "component": "TextField",
271
+ "rules": {
272
+ "url": true
273
+ },
274
+ "meta": "researchgate"
275
+ },
276
+ "mendeley": {
277
+ "label": "mendeley",
278
+ "type": "PRIMITIVE",
279
+ "component": "TextField",
280
+ "rules": {
281
+ "url": true
282
+ },
283
+ "meta": "mendeley"
284
+ },
285
+ "idRef": {
286
+ "label": "idRef",
287
+ "type": "PRIMITIVE",
288
+ "component": "TextField",
289
+ "rules": {
290
+ "url": true
291
+ },
292
+ "meta": "idRef"
293
+ },
294
+ "twitter": {
295
+ "label": "twitter",
296
+ "type": "PRIMITIVE",
297
+ "component": "TextField",
298
+ "rules": {
299
+ "url": true
300
+ },
301
+ "meta": "twitter"
302
+ },
303
+ "linkedin": {
304
+ "label": "linkedin",
305
+ "type": "PRIMITIVE",
306
+ "component": "TextField",
307
+ "rules": {
308
+ "url": true
309
+ },
310
+ "meta": "linkedin"
311
+ },
312
+ "bluesky": {
313
+ "label": "bluesky",
314
+ "type": "PRIMITIVE",
315
+ "component": "TextField",
316
+ "rules": {
317
+ "url": true
318
+ },
319
+ "meta": "bluesky"
320
+ },
321
+ "instagram": {
322
+ "label": "instagram",
323
+ "type": "PRIMITIVE",
324
+ "component": "TextField",
325
+ "rules": {
326
+ "url": true
327
+ },
328
+ "meta": "instagram"
329
+ },
330
+ "youtube": {
331
+ "label": "youtube",
332
+ "type": "PRIMITIVE",
333
+ "component": "TextField",
334
+ "rules": {
335
+ "url": true
336
+ },
337
+ "meta": "youtube"
338
+ }
339
+ }
340
+ },
341
+ "disciplines": {
342
+ "label": "disciplines",
343
+ "component": "DocumentPicker",
344
+ "type": "DOCUMENT",
345
+ "meta": "disciplines",
346
+ "default": ""
347
+ },
348
+ "video": {
349
+ "label": "videos",
350
+ "component": "CollectionContainerPanel",
351
+ "type": "ARRAY",
352
+ "meta": "video",
353
+ "items": {
354
+ "video": {
355
+ "label": "video",
356
+ "component": "ObjectCollapsiblePanel",
357
+ "type": "OBJECT",
358
+ "meta": "video",
359
+ "items": {
360
+ "url": {
361
+ "type": "PRIMITIVE",
362
+ "component": "TextField",
363
+ "label": "url",
364
+ "description": "The url where the image is fetched from",
365
+ "rules": {
366
+ "required": true,
367
+ "url": true,
368
+ "max": 2048
369
+ },
370
+ "meta": "url"
371
+ },
372
+ "caption": {
373
+ "label": "caption",
374
+ "type": "PRIMITIVE",
375
+ "component": "TextField",
376
+ "i18n": true,
377
+ "rules": {
378
+ "required": true,
379
+ "min": 2,
380
+ "max": 100
381
+ },
382
+ "meta": "caption"
383
+ },
384
+ "alt": {
385
+ "label": "alt",
386
+ "type": "PRIMITIVE",
387
+ "i18n": true,
388
+ "component": "TextField",
389
+ "description": "Displayed if the image cannot be loaded",
390
+ "rules": {
391
+ "max": 200
392
+ },
393
+ "meta": "alt"
394
+ },
395
+ "copyright": {
396
+ "label": "copyright",
397
+ "type": "PRIMITIVE",
398
+ "component": "TextField",
399
+ "default": "Free of rights",
400
+ "description": "Owner of the image copyright",
401
+ "meta": "copyright"
402
+ },
403
+ "licence": {
404
+ "label": "licence",
405
+ "type": "PRIMITIVE",
406
+ "component": "TextField",
407
+ "default": null,
408
+ "description": "The licence of the video",
409
+ "meta": "licence"
410
+ },
411
+ "licenseUrl": {
412
+ "label": "licenseUrl",
413
+ "type": "PRIMITIVE",
414
+ "component": "TextField",
415
+ "default": null,
416
+ "description": "The caption of the video",
417
+ "rules": {
418
+ "url": true
419
+ },
420
+ "show": {
421
+ "default": false,
422
+ "switchIf": [],
423
+ "disjonctive": false
424
+ },
425
+ "meta": "licenseUrl"
426
+ },
427
+ "backgroundColor": {
428
+ "label": "backgroundColor",
429
+ "type": "PRIMITIVE",
430
+ "component": "ColorPicker",
431
+ "default": null,
432
+ "rules": {
433
+ "color": true
434
+ },
435
+ "show": {
436
+ "default": false,
437
+ "switchIf": [],
438
+ "disjonctive": false
439
+ },
440
+ "meta": "backgroundColor"
441
+ }
442
+ }
443
+ }
444
+ }
445
+ },
446
+ "related": {
447
+ "label": "related",
448
+ "component": "ObjectContainerPanel",
449
+ "type": "OBJECT",
450
+ "rules": {
451
+ "required": true,
452
+ "min": 5,
453
+ "max": 200
454
+ },
455
+ "meta": "related",
456
+ "items": {
457
+ "events": {
458
+ "label": "relatedEvent",
459
+ "component": "DocumentPicker",
460
+ "type": "DOCUMENT",
461
+ "meta": "event",
462
+ "default": ""
463
+ },
464
+ "news": {
465
+ "label": "relatedNews",
466
+ "component": "DocumentPicker",
467
+ "type": "DOCUMENT",
468
+ "meta": "news",
469
+ "default": ""
470
+ },
471
+ "people": {
472
+ "label": "relatedPeople",
473
+ "component": "DocumentPicker",
474
+ "type": "DOCUMENT",
475
+ "meta": "people",
476
+ "default": ""
477
+ },
478
+ "publications": {
479
+ "label": "relatedPublication",
480
+ "component": "DocumentPicker",
481
+ "type": "DOCUMENT",
482
+ "meta": "publication",
483
+ "default": ""
484
+ },
485
+ "projects": {
486
+ "label": "relatedProject",
487
+ "component": "DocumentPicker",
488
+ "type": "DOCUMENT",
489
+ "meta": "project",
490
+ "default": ""
491
+ },
492
+ "fellowships": {
493
+ "label": "relatedFellowships",
494
+ "component": "DocumentPicker",
495
+ "type": "DOCUMENT",
496
+ "meta": "fellowship",
497
+ "default": ""
498
+ }
499
+ }
500
+ },
501
+ "consent": {
502
+ "label": "consent",
503
+ "component": "ObjectContainerPanel",
504
+ "type": "OBJECT",
505
+ "meta": "consent",
506
+ "items": {
507
+ "data": {
508
+ "label": "data",
509
+ "component": "Checkbox",
510
+ "type": "PRIMITIVE",
511
+ "default": false,
512
+ "hint": "My profile will be showcased on the Paris IAS websites",
513
+ "meta": "data"
514
+ },
515
+ "record": {
516
+ "label": "record",
517
+ "component": "Checkbox",
518
+ "type": "PRIMITIVE",
519
+ "default": false,
520
+ "hint": "Necessary if you appear in a video or audio recording",
521
+ "meta": "record"
522
+ },
523
+ "diffusion": {
524
+ "label": "diffusion",
525
+ "component": "Checkbox",
526
+ "type": "PRIMITIVE",
527
+ "default": false,
528
+ "hint": "To make available my video and audio recordings in publicaitons, news, events...",
529
+ "meta": "diffusion"
530
+ },
531
+ "publication": {
532
+ "label": "publication",
533
+ "component": "Checkbox",
534
+ "type": "PRIMITIVE",
535
+ "default": false,
536
+ "hint": "To be officially published as an academic author and provide your content with a DOI",
537
+ "meta": "publication"
538
+ },
539
+ "email": {
540
+ "label": "email",
541
+ "component": "Checkbox",
542
+ "type": "PRIMITIVE",
543
+ "default": false,
544
+ "hint": "To allow us to send you email communications in general (including newsletter)",
545
+ "meta": "email"
546
+ },
547
+ "newsletter": {
548
+ "label": "newsletter",
549
+ "component": "Checkbox",
550
+ "type": "PRIMITIVE",
551
+ "default": false,
552
+ "meta": "newsletter"
553
+ },
554
+ "fellowshipnewsletter": {
555
+ "label": "fellowshipnewsletter",
556
+ "component": "Checkbox",
557
+ "type": "PRIMITIVE",
558
+ "default": false,
559
+ "meta": "fellowshipnewsletter"
560
+ }
561
+ }
562
+ },
563
+ "groups": {
564
+ "label": "groups",
565
+ "groups": [
566
+ "ADMIN"
567
+ ],
568
+ "component": "ObjectContainerPanel",
569
+ "type": "OBJECT",
570
+ "meta": "groups",
571
+ "items": {
572
+ "team": {
573
+ "label": "team",
574
+ "component": "Checkbox",
575
+ "type": "PRIMITIVE",
576
+ "meta": "team"
577
+ },
578
+ "sab": {
579
+ "label": "sab",
580
+ "component": "Checkbox",
581
+ "type": "PRIMITIVE",
582
+ "meta": "sab"
583
+ },
584
+ "board": {
585
+ "label": "board",
586
+ "component": "Checkbox",
587
+ "type": "PRIMITIVE",
588
+ "meta": "board"
589
+ },
590
+ "fellows": {
591
+ "label": "fellows",
592
+ "component": "Checkbox",
593
+ "type": "PRIMITIVE",
594
+ "meta": "fellow"
595
+ },
596
+ "sponsor": {
597
+ "label": "sponsor",
598
+ "component": "Checkbox",
599
+ "type": "PRIMITIVE",
600
+ "meta": "sponsor"
601
+ },
602
+ "vintage": {
603
+ "label": "vintage",
604
+ "component": "CollectionContainerPanel",
605
+ "type": "ARRAY",
606
+ "meta": "vintage",
607
+ "items": {
608
+ "name": {
609
+ "label": "name",
610
+ "type": "PRIMITIVE",
611
+ "component": "TextField",
612
+ "rules": {
613
+ "required": true,
614
+ "min": 2,
615
+ "max": 100
616
+ },
617
+ "meta": "name"
618
+ },
619
+ "year": {
620
+ "label": "year",
621
+ "type": "PRIMITIVE",
622
+ "component": "TextField",
623
+ "rules": {
624
+ "required": true,
625
+ "min": 2,
626
+ "max": 100
627
+ },
628
+ "meta": "year"
629
+ },
630
+ "theme": {
631
+ "label": "theme",
632
+ "type": "PRIMITIVE",
633
+ "component": "TextField",
634
+ "i18n": true,
635
+ "rules": {
636
+ "required": true,
637
+ "min": 2,
638
+ "max": 100
639
+ },
640
+ "meta": "theme"
641
+ },
642
+ "url": {
643
+ "type": "PRIMITIVE",
644
+ "component": "TextField",
645
+ "label": "url",
646
+ "rules": {
647
+ "required": true,
648
+ "url": true,
649
+ "max": 2048
650
+ },
651
+ "meta": "url"
652
+ }
653
+ }
654
+ }
655
+ }
656
+ }
657
+ }
658
+ }