-
Notifications
You must be signed in to change notification settings - Fork 55
/
fields.json
449 lines (442 loc) · 12.7 KB
/
fields.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
{
"lastUpdated": {
"name": "Last Updated",
"description": "Date when the entry was re/submitted",
"value": null
},
"name": {
"name": "Name",
"description": "Name of the CMS System",
"value": null
},
"version": {
"name": "Version",
"description": "Version of the system",
"value": null
},
"license": {
"name": "License",
"description": "License of the system. Separated by slashes '/', a subset of the following values are allowed: GPLv3, Proprietary, Apache-2.0, BSD 3-Clause, MIT",
"value": null
},
"inception": {
"name": "Inception",
"description": "When was the project started?",
"value": null
},
"category": {
"name": "Category",
"description": "Which featureset is offered by the cms? String containing a subset of the following values separated by slashes'/': Essential,Professional,Enterprise. E.g. xyz-CMS has professional and enterprise functionality: 'Professional/Enterprise'",
"value": null
},
"systemRequirements": {
"name": "System Requirements",
"description": "",
"value": null
},
"specialFeatures": {
"name": "Special Features",
"description": "Noteworthy Features",
"value": null
},
"supportedDatabases": {
"name": "Supported Databases",
"description": "",
"value": null
},
"teaser": {
"name": "Description",
"description": "",
"value": null
},
"gitHubURL": {
"name": "GitHub URL",
"description": "",
"value": null
},
"properties": {
"openSource": {
"name": "Open Source",
"description": "Yes/No",
"value": null
},
"cloudService": {
"name": "Cloud Service",
"description": "Yes/No",
"value": null
},
"onPremisesInstallation": {
"name": "On Premises Installation",
"description": "Yes/No",
"value": null
},
"cloudServiceHostedInEurope": {
"name": "Cloud Service Hosted in Europe",
"description": "Yes/No",
"value": null
},
"commercialSupportAvailable": {
"name": "Commercial Support Available?",
"description": "Yes/No",
"value": null
},
"graphQl": {
"name": "GraphQL",
"description": "GraphQL Functionalities",
"api": {
"name": "API",
"description": "Yes/No",
"value": null
},
"mutations": {
"name": "Mutations",
"description": "Does the API support GraphQL mutation?",
"value": null
},
"subscriptions": {
"name": "Subscriptions",
"description": "Does the API support GraphQL subscriptions?",
"value": null
}
},
"rest": {
"name": "REST",
"description": "REST Functionalities",
"api": {
"name": "API",
"description": "Does the system provide a REST or HTTP API?",
"value": null
},
"create": {
"name": "Create",
"description": "Can elements be created via REST?",
"value": null
},
"read": {
"name": "Read",
"description": "Can elements be read via REST?",
"value": null
},
"update": {
"name": "Update",
"description": "Can elements be updated via REST?",
"value": null
},
"delete": {
"name": "Delete",
"description": "Can elements be deleted via REST?",
"value": null
},
"upload": {
"name": "Upload",
"description": "Can uploads be performed via REST?",
"value": null
}
},
"search": {
"name": "Search",
"description": "Search Functionalities",
"api": {
"name": "API",
"description": "Yes/No",
"value": null
},
"feature_fullTextSearch": {
"name": "Full Text Search",
"description": "Yes/No",
"value": null
},
"feature_stemming": {
"name": "Stemming",
"description": "Yes/No",
"value": null
},
"feature_stopWords": {
"name": "Stop Words",
"description": "Yes/No",
"value": null
},
"feature_autoCompletion": {
"name": "Autocompletion",
"description": "Yes/No",
"value": null
},
"feature_autoSuggestions": {
"name": "Autosuggestion",
"description": "Yes/No",
"value": null
},
"feature_resultHighlighting": {
"name": "Result Highlighting",
"description": "Yes/No",
"value": null
},
"feature_geospatialSearch": {
"name": "Geospatial Search",
"description": "Yes/No",
"value": null
},
"feature_searchWithinUploads": {
"name": "Search within uploads",
"description": "Is it possible to search within uploaded documents (PDF, Doc)?",
"value": null
}
},
"image": {
"name": "Image",
"description": "Image Functionalities",
"manipulation": {
"name": "Manipulation",
"description": "",
"value": null
},
"focalPointSupport": {
"name": "Focalpoint Support",
"description": "Can a focal point be set to images in order to apply smart cropping?",
"value": null
},
"faceDetection": {
"name": "Facedetection",
"description": "Can faces in images be detected and added to the metadata of the images?",
"value": null
},
"optimziedImageEncoding": {
"name": "Optimized Image Encoding",
"description": "Is it possible to optimize images (e.g. WebP, Progressive JPEG)?",
"value": null
}
},
"assetFingerprinting": {
"name": "Asset fingerprinting",
"description": "Can fingerprints of assets (image, video, audio) be generated in order to find similar assets?",
"value": null
},
"cdnSupport": {
"name": "CDN Support",
"description": "Can Assets be distributed to a CDN in order to speed-up content delivery?",
"value": null
},
"antivirusScanning": {
"name": "Antivirus Scanning",
"description": "Can uploads be scanned via an antivirus system?",
"value": null
},
"customBinaryHandler": {
"name": "Custom Binary Handler",
"description": "Is it possible to hook into the upload process to directly process uploaded assets (e.g. re-encode videos, shrink large images)?",
"value": null
},
"clustering": {
"name": "Clustering",
"description": "Can the system be setup in a cluster (e.g. HA)? - On Premise only",
"value": null
},
"dockerSupport": {
"name": "Docker Support",
"description": "Can the system be run via docker? - On Premise only",
"value": null
},
"backupFeature": {
"name": "Backup Feature",
"description": "Yes/No",
"value": null
},
"importExport": {
"name": "Import/Export",
"description": "Can the whole system or parts be exported and later imported?",
"value": null
},
"cli": {
"name": "CLI",
"description": "Is there a CLI which can be used to interact with the System from the console?",
"value": null
},
"sdk": {
"name": "SDK",
"description": "Support for specific SDKs",
"java": {
"name": "Java",
"description": "Yes/No",
"value": null
},
"cSharp": {
"name": "C#",
"description": "Yes/No",
"value": null
},
"php": {
"name": "PHP",
"description": "Yes/No",
"value": null
},
"javaScript": {
"name": "JavaScript",
"description": "Yes/No",
"value": null
},
"react": {
"name": "React",
"description": "Yes/No",
"value": null
},
"angular": {
"name": "AngularJS",
"description": "Yes/No",
"value": null
},
"typeScript": {
"name": "TypeScript",
"description": "Yes/No",
"value": null
}
},
"webHooks": {
"name": "Web Hooks",
"description": "Yes/No",
"value": null
},
"eventBus": {
"name": "Eventbus",
"description": "Yes/No",
"value": null
},
"bulkImport": {
"name": "Bulk Import",
"description": "Is there a feature for bulk imports?",
"value": null
},
"clientSideForms": {
"name": "Client Side Forms",
"description": "Is it possible to manage forms with the System? (e.g. Add a poll to a website and store the data in the CMS)",
"value": null
},
"pluginSystem": {
"name": "Plugin System",
"description": "Can the system be extended via custom plugins?",
"value": null
},
"customizableUi": {
"name": "Customizable UI",
"description": "Can the UI be customized? (e.g. by adding custom form elements)",
"value": null
},
"userManagement": {
"name": "User Management",
"description": "Does the system provide a way to manage users?",
"value": null
},
"roleBasedPermissions": {
"name": "Role Based Permissions",
"description": "Are permissions bound to roles?",
"value": null
},
"documentLevelPermissions": {
"name": "Document Level Permissions",
"description": "Can individual documents have dedicated permissions?",
"value": null
},
"oauth2Support": {
"name": "OAuth 2.0 Support",
"description": "Is it possible to connect to an OAuth 2.0 provider to authenticate users?",
"value": null
},
"auditing": {
"name": "Auditing",
"description": "Will actions be logged? Is it possible to see what changes have been made by whom?",
"value": null
},
"apiKeys": {
"name": "API Keys",
"description": "Can keys be used to authenticate the access to the API?",
"value": null
},
"projectSupport": {
"name": "Project Support",
"description": "Is it possible to have multiple projects/spaces which dedicated contents?",
"value": null
},
"i18n": {
"name": "I18N Localized Content",
"description": "Yes/No",
"value": null
},
"contentTrees": {
"name": "Content Trees",
"description": "Can contents be structured in a tree? Can folders be used?",
"value": null
},
"tagging": {
"name": "Tagging",
"description": "Is it possible to tag contents or other elements in the system?",
"value": null
},
"contentRelations": {
"name": "Content Relations",
"description": "How can individual contents be linked to each other?",
"supportQueryingIncomingRelations": {
"name": "Support for querying incoming relations",
"description": "n:1-Relations",
"value": null
},
"supportNestingFields": {
"name": "Support for nesting fields/elements",
"description": "n:m, etc.",
"value": null
}
},
"gdprStatement": {
"name": "GDPR Statement",
"description": "Was an official statement regarding GDPR compliance provided? (Cloud Only)",
"value": null
},
"gdprApi": {
"name": "GDPR API",
"description": "Is it possible to quickly find and anonymize stored contents which contain user specific information (e.g. Name, Address, Date of Birth) using a dedicated API?",
"value": null
},
"editingConflictDetection": {
"name": "Editing Conflict Detection",
"description": "Will conflicts for concurrent updates / edits be detected?",
"value": null
},
"versioning": {
"name": "Versioning",
"description": "Will contents be versioned?",
"value": null
},
"content": {
"name": "Content",
"description": "Content-specific Functionalities",
"scheduling": {
"name": "Scheduling",
"description": "Is it possible to publish a specific content on a specific date?",
"value": null
},
"branches": {
"name": "Branches",
"description": "Can contents be branched in order to e.g. refactor the content structure for a relaunch of the connected website?",
"value": null
},
"modelsSchemas": {
"name": "Models / Schemas",
"description": "Does the System provide a strict content schema?",
"value": null
},
"modelsSchemaVersioning": {
"name": "Model / Schema Versioning",
"description": "Are the content models versioned? Can older versions be accessed?",
"value": null
},
"migration": {
"name": "Migration",
"description": "Is it possible to automatically migrate contents if the underlying schema changes? (e.g. Change field type from number to string)",
"value": null
}
},
"workflows": {
"name": "Workflows",
"description": "Does the system support editing workflows?",
"value": null
}
}
}