@beinformed/ui 1.61.0 → 1.62.0

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 (80) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/esm/models/attributes/__tests__/AttributeContent.spec.js.flow +1 -1
  3. package/esm/models/concepts/ConceptIndexModel.js +1 -1
  4. package/esm/models/concepts/ConceptIndexModel.js.flow +3 -1
  5. package/esm/models/concepts/ConceptIndexModel.js.map +1 -1
  6. package/esm/models/concepts/ConceptLinkModel.d.ts +15 -0
  7. package/esm/models/concepts/ConceptLinkModel.js +14 -0
  8. package/esm/models/concepts/ConceptLinkModel.js.flow +21 -0
  9. package/esm/models/concepts/ConceptLinkModel.js.map +1 -1
  10. package/esm/models/concepts/SourceReferenceModel.d.ts +9 -0
  11. package/esm/models/concepts/SourceReferenceModel.js +14 -0
  12. package/esm/models/concepts/SourceReferenceModel.js.flow +15 -1
  13. package/esm/models/concepts/SourceReferenceModel.js.map +1 -1
  14. package/esm/models/concepts/__mock__/related_concepts.js.flow +12 -0
  15. package/esm/models/concepts/__tests__/RelatedConcepts.spec.js.flow +60 -0
  16. package/esm/models/concepts/__tests__/SourceReferenceModel.spec.js.flow +58 -0
  17. package/esm/models/content/ContentLinkModel.d.ts +8 -0
  18. package/esm/models/content/ContentLinkModel.js +20 -0
  19. package/esm/models/content/ContentLinkModel.js.flow +22 -0
  20. package/esm/models/content/ContentLinkModel.js.map +1 -1
  21. package/esm/models/content/ContentTOCModel.d.ts +3 -0
  22. package/esm/models/content/ContentTOCModel.js +6 -0
  23. package/esm/models/content/ContentTOCModel.js.flow +6 -0
  24. package/esm/models/content/ContentTOCModel.js.map +1 -1
  25. package/esm/models/content/__tests__/ContentIndexModel.spec.js.flow +3 -0
  26. package/esm/models/content/__tests__/ContentModel.spec.js.flow +5 -5
  27. package/esm/models/content/__tests__/Formalsource.spec.js.flow +4 -0
  28. package/esm/models/form/FormObjectModel.js +5 -3
  29. package/esm/models/form/FormObjectModel.js.flow +12 -11
  30. package/esm/models/form/FormObjectModel.js.map +1 -1
  31. package/esm/models/types.d.ts +6 -0
  32. package/esm/models/types.js.flow +7 -0
  33. package/esm/models/types.js.map +1 -1
  34. package/esm/utils/helpers/__tests__/createHash.spec.js.flow +5 -5
  35. package/esm/utils/helpers/createHash.d.ts +2 -1
  36. package/esm/utils/helpers/createHash.js +10 -9
  37. package/esm/utils/helpers/createHash.js.flow +10 -10
  38. package/esm/utils/helpers/createHash.js.map +1 -1
  39. package/lib/models/concepts/ConceptIndexModel.js +1 -1
  40. package/lib/models/concepts/ConceptIndexModel.js.map +1 -1
  41. package/lib/models/concepts/ConceptLinkModel.d.ts +15 -0
  42. package/lib/models/concepts/ConceptLinkModel.js +14 -0
  43. package/lib/models/concepts/ConceptLinkModel.js.map +1 -1
  44. package/lib/models/concepts/SourceReferenceModel.d.ts +9 -0
  45. package/lib/models/concepts/SourceReferenceModel.js +14 -0
  46. package/lib/models/concepts/SourceReferenceModel.js.map +1 -1
  47. package/lib/models/content/ContentLinkModel.d.ts +8 -0
  48. package/lib/models/content/ContentLinkModel.js +20 -0
  49. package/lib/models/content/ContentLinkModel.js.map +1 -1
  50. package/lib/models/content/ContentTOCModel.d.ts +3 -0
  51. package/lib/models/content/ContentTOCModel.js +6 -0
  52. package/lib/models/content/ContentTOCModel.js.map +1 -1
  53. package/lib/models/form/FormObjectModel.js +5 -3
  54. package/lib/models/form/FormObjectModel.js.map +1 -1
  55. package/lib/models/types.d.ts +6 -0
  56. package/lib/models/types.js.map +1 -1
  57. package/lib/utils/helpers/createHash.d.ts +2 -1
  58. package/lib/utils/helpers/createHash.js +11 -9
  59. package/lib/utils/helpers/createHash.js.map +1 -1
  60. package/package.json +3 -1
  61. package/src/models/attributes/__tests__/AttributeContent.spec.js +1 -1
  62. package/src/models/concepts/ConceptIndexModel.js +3 -1
  63. package/src/models/concepts/ConceptLinkModel.js +21 -0
  64. package/src/models/concepts/SourceReferenceModel.js +15 -1
  65. package/src/models/concepts/__mock__/related_concepts.js +12 -0
  66. package/src/models/concepts/__mock__/related_concepts_contributions.json +41 -0
  67. package/src/models/concepts/__mock__/related_concepts_data.json +2292 -0
  68. package/src/models/concepts/__tests__/RelatedConcepts.spec.js +60 -0
  69. package/src/models/concepts/__tests__/SourceReferenceModel.spec.js +58 -0
  70. package/src/models/content/ContentLinkModel.js +22 -0
  71. package/src/models/content/ContentTOCModel.js +6 -0
  72. package/src/models/content/__tests__/ContentIndexModel.spec.js +3 -0
  73. package/src/models/content/__tests__/ContentModel.spec.js +5 -5
  74. package/src/models/content/__tests__/Formalsource.spec.js +4 -0
  75. package/src/models/content/__tests__/content-index.json +1 -0
  76. package/src/models/content/__tests__/formalsource-complete.json +1 -0
  77. package/src/models/form/FormObjectModel.js +12 -11
  78. package/src/models/types.js +7 -0
  79. package/src/utils/helpers/__tests__/createHash.spec.js +5 -5
  80. package/src/utils/helpers/createHash.js +10 -10
@@ -0,0 +1,2292 @@
1
+ {
2
+ "relatedConcepts": {
3
+ "_links": {
4
+ "self": {
5
+ "href": "/content/bundle-com.beinformed.source.Highlevelrequirements/ResearchGrant/High%20level%20requirements.formalsource/relatedConcepts"
6
+ },
7
+ "api_doc": {
8
+ "href": "/api-docs/v3/content/(content-identifier)/relatedConcepts"
9
+ },
10
+ "contributions": {
11
+ "href": "/contributions/content/(content-identifier)/relatedConcepts"
12
+ }
13
+ },
14
+ "filter": {
15
+ "entryDate": {
16
+ "param": "entryDate",
17
+ "name": "entryDate",
18
+ "value": "2025-06-03"
19
+ },
20
+ "modelCategory": {
21
+ "param": "modelCategory",
22
+ "name": "modelCategory"
23
+ }
24
+ },
25
+ "_embedded": {
26
+ "results": [
27
+ {
28
+ "concept": {
29
+ "_id": "SystemMustSendAutomatedNotificationsForStatusChanges",
30
+ "modelCategory": "Requirements",
31
+ "label": "System must send automated notifications for status changes.",
32
+ "_links": {
33
+ "self": {
34
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/SystemMustSendAutomatedNotificationsForStatusChanges"
35
+ },
36
+ "concepttype": {
37
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
38
+ }
39
+ },
40
+ "sectionFragment": {
41
+ "sectionId": "AutomatedNotifications_Requirement"
42
+ }
43
+ }
44
+ },
45
+ {
46
+ "concept": {
47
+ "_id": "n74UsersHaveMaximumFlexibilityWithinPolicyConstraints",
48
+ "modelCategory": "Requirements",
49
+ "label": "Users have maximum flexibility within policy constraints",
50
+ "_links": {
51
+ "self": {
52
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n74UsersHaveMaximumFlexibilityWithinPolicyConstraints"
53
+ },
54
+ "concepttype": {
55
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
56
+ }
57
+ },
58
+ "sectionFragment": {
59
+ "sectionId": "MaximumFlexibilityWithinPolicyConstraints",
60
+ "text": "<p>Users have maximum flexibility within policy constraints</p>",
61
+ "startOffset": 0,
62
+ "endOffset": 56
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "concept": {
68
+ "_id": "EnsureDataIntegrityAndApplicantTrust",
69
+ "modelCategory": "Requirements",
70
+ "label": "Ensure data integrity and applicant trust",
71
+ "_links": {
72
+ "self": {
73
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureDataIntegrityAndApplicantTrust"
74
+ },
75
+ "concepttype": {
76
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
77
+ }
78
+ },
79
+ "sectionFragment": {
80
+ "sectionId": "EnsureDataIntegrityAndApplicantTrust"
81
+ }
82
+ }
83
+ },
84
+ {
85
+ "concept": {
86
+ "_id": "n26StreamlineTheReviewProcess",
87
+ "modelCategory": "Requirements",
88
+ "label": "Streamline the review process",
89
+ "_links": {
90
+ "self": {
91
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n26StreamlineTheReviewProcess"
92
+ },
93
+ "concepttype": {
94
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
95
+ }
96
+ },
97
+ "sectionFragment": {
98
+ "sectionId": "StreamlineTheReviewProcess",
99
+ "text": "<p>Streamline the review process</p>",
100
+ "startOffset": 0,
101
+ "endOffset": 29
102
+ }
103
+ }
104
+ },
105
+ {
106
+ "concept": {
107
+ "_id": "n56AllowIntegrationWithOtherSystemsEGUniversityDatabases",
108
+ "modelCategory": "Requirements",
109
+ "label": "Allow integration with other systems (e.g., university databases)",
110
+ "_links": {
111
+ "self": {
112
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n56AllowIntegrationWithOtherSystemsEGUniversityDatabases"
113
+ },
114
+ "concepttype": {
115
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
116
+ }
117
+ },
118
+ "sectionFragment": {
119
+ "sectionId": "IntegrationWithExternalSystems_Requirement",
120
+ "text": "<p>Allow integration with other systems (e.g., university databases).</p>",
121
+ "startOffset": 13,
122
+ "endOffset": 79
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "concept": {
128
+ "_id": "RulesAreCorrectlyAppliedToReachDecisionsOfEligibilityAndAmountOf",
129
+ "modelCategory": "Requirements",
130
+ "label": "Rules are correctly applied to reach decisions of eligibility and amount of funding",
131
+ "_links": {
132
+ "self": {
133
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/RulesAreCorrectlyAppliedToReachDecisionsOfEligibilityAndAmountOf"
134
+ },
135
+ "concepttype": {
136
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
137
+ }
138
+ },
139
+ "sectionFragment": {
140
+ "sectionId": "RulesCorrectlyApplied_Requirement"
141
+ }
142
+ }
143
+ },
144
+ {
145
+ "concept": {
146
+ "_id": "FacilitateData_drivenDecision_making",
147
+ "modelCategory": "Requirements",
148
+ "label": "Facilitate data-driven decision-making",
149
+ "_links": {
150
+ "self": {
151
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/FacilitateData_drivenDecision_making"
152
+ },
153
+ "concepttype": {
154
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
155
+ }
156
+ },
157
+ "sectionFragment": {
158
+ "sectionId": "FacilitateDataDrivenDecisionMaking"
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "concept": {
164
+ "_id": "n52EnableApplicantsToCalculateAndSubmitDetailedBudgets",
165
+ "modelCategory": "Requirements",
166
+ "label": "Enable applicants to calculate and submit detailed budgets.",
167
+ "_links": {
168
+ "self": {
169
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n52EnableApplicantsToCalculateAndSubmitDetailedBudgets"
170
+ },
171
+ "concepttype": {
172
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
173
+ }
174
+ },
175
+ "sectionFragment": {
176
+ "sectionId": "BudgetCalculation_Requirement",
177
+ "text": "<p>Enable applicants to calculate and submit detailed budgets.</p>",
178
+ "startOffset": 13,
179
+ "endOffset": 72
180
+ }
181
+ }
182
+ },
183
+ {
184
+ "concept": {
185
+ "_id": "PositiveApplicationExperienceForApplicantAndCaseHandler",
186
+ "modelCategory": "Requirements",
187
+ "label": "Positive application experience for applicant and case handler",
188
+ "_links": {
189
+ "self": {
190
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/PositiveApplicationExperienceForApplicantAndCaseHandler"
191
+ },
192
+ "concepttype": {
193
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
194
+ }
195
+ },
196
+ "sectionFragment": {
197
+ "sectionId": "PositiveApplicationExperienceForApplicantAndCaseHandler"
198
+ }
199
+ }
200
+ },
201
+ {
202
+ "concept": {
203
+ "_id": "n67BuildARegisterOfApplicants",
204
+ "modelCategory": "Requirements",
205
+ "label": "Build a register of applicants",
206
+ "_links": {
207
+ "self": {
208
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n67BuildARegisterOfApplicants"
209
+ },
210
+ "concepttype": {
211
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
212
+ }
213
+ },
214
+ "sectionFragment": {
215
+ "sectionId": "RegisterOfApplicants_Requirement",
216
+ "text": "<p>Build a register of applicants</p>",
217
+ "startOffset": 13,
218
+ "endOffset": 43
219
+ }
220
+ }
221
+ },
222
+ {
223
+ "concept": {
224
+ "_id": "AllowIntegrationWithOtherSystemsEgUniversityDatabases",
225
+ "modelCategory": "Requirements",
226
+ "label": "Allow integration with other systems (e.g., university databases)",
227
+ "_links": {
228
+ "self": {
229
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/AllowIntegrationWithOtherSystemsEgUniversityDatabases"
230
+ },
231
+ "concepttype": {
232
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
233
+ }
234
+ },
235
+ "sectionFragment": {
236
+ "sectionId": "IntegrationWithExternalSystems_Requirement"
237
+ }
238
+ }
239
+ },
240
+ {
241
+ "concept": {
242
+ "_id": "n42PositiveApplicationExperienceForApplicantAndCaseHandler",
243
+ "modelCategory": "Requirements",
244
+ "label": "Positive application experience for applicant and case handler",
245
+ "_links": {
246
+ "self": {
247
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n42PositiveApplicationExperienceForApplicantAndCaseHandler"
248
+ },
249
+ "concepttype": {
250
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
251
+ }
252
+ },
253
+ "sectionFragment": {
254
+ "sectionId": "PositiveApplicationExperienceForApplicantAndCaseHandler",
255
+ "text": "<p>Positive application experience for applicant and case handler</p>",
256
+ "startOffset": 0,
257
+ "endOffset": 62
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "concept": {
263
+ "_id": "n58MaintainLogsOfAllActionsAndChangesWithinTheSystem",
264
+ "modelCategory": "Requirements",
265
+ "label": "Maintain logs of all actions and changes within the system",
266
+ "_links": {
267
+ "self": {
268
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n58MaintainLogsOfAllActionsAndChangesWithinTheSystem"
269
+ },
270
+ "concepttype": {
271
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
272
+ }
273
+ },
274
+ "sectionFragment": {
275
+ "sectionId": "AuditTrails_Requirement",
276
+ "text": "<p>Maintain logs of all actions and changes within the system.</p>",
277
+ "startOffset": 13,
278
+ "endOffset": 72
279
+ }
280
+ }
281
+ },
282
+ {
283
+ "concept": {
284
+ "_id": "n28EnsureObjectiveAndFairAssessments",
285
+ "modelCategory": "Requirements",
286
+ "label": "Ensure objective and fair assessments",
287
+ "_links": {
288
+ "self": {
289
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n28EnsureObjectiveAndFairAssessments"
290
+ },
291
+ "concepttype": {
292
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
293
+ }
294
+ },
295
+ "sectionFragment": {
296
+ "sectionId": "EnsureObjectiveAndFairAssessments",
297
+ "text": "<p>Ensure objective and fair assessments</p>",
298
+ "startOffset": 0,
299
+ "endOffset": 37
300
+ }
301
+ }
302
+ },
303
+ {
304
+ "concept": {
305
+ "_id": "CorporateComplianceOfLawsAndRegulationsSatisfied",
306
+ "modelCategory": "Requirements",
307
+ "label": "Corporate compliance of laws and regulations satisfied",
308
+ "_links": {
309
+ "self": {
310
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/CorporateComplianceOfLawsAndRegulationsSatisfied"
311
+ },
312
+ "concepttype": {
313
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
314
+ }
315
+ },
316
+ "sectionFragment": {
317
+ "sectionId": "CorporateComplianceOfLawsAndRegulationsSatisfied"
318
+ }
319
+ }
320
+ },
321
+ {
322
+ "concept": {
323
+ "_id": "UsersMustBeAbleToCreateAccountsAndSecurelyLogIn",
324
+ "modelCategory": "Requirements",
325
+ "label": "Users must be able to create accounts and securely log in.",
326
+ "_links": {
327
+ "self": {
328
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/UsersMustBeAbleToCreateAccountsAndSecurelyLogIn"
329
+ },
330
+ "concepttype": {
331
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
332
+ }
333
+ },
334
+ "sectionFragment": {
335
+ "sectionId": "UserRegistrationAndLogin_Requirement"
336
+ }
337
+ }
338
+ },
339
+ {
340
+ "concept": {
341
+ "_id": "n43CorporateComplianceOfLawsAndRegulationsSatisfied",
342
+ "modelCategory": "Requirements",
343
+ "label": "Corporate compliance of laws and regulations satisfied",
344
+ "_links": {
345
+ "self": {
346
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n43CorporateComplianceOfLawsAndRegulationsSatisfied"
347
+ },
348
+ "concepttype": {
349
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
350
+ }
351
+ },
352
+ "sectionFragment": {
353
+ "sectionId": "CorporateComplianceOfLawsAndRegulationsSatisfied",
354
+ "text": "<p>Corporate compliance of laws and regulations satisfied</p>",
355
+ "startOffset": 0,
356
+ "endOffset": 54
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "concept": {
362
+ "_id": "n65JuniorEmployeesAlreadyPrepareTheDecisionButEspeciallyExceptio",
363
+ "modelCategory": "Requirements",
364
+ "label": "Junior employees already prepare the decision, but especially exceptional requests take a lot of effort and need experienced employees to take the final result decision",
365
+ "_links": {
366
+ "self": {
367
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n65JuniorEmployeesAlreadyPrepareTheDecisionButEspeciallyExceptio"
368
+ },
369
+ "concepttype": {
370
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
371
+ }
372
+ },
373
+ "sectionFragment": {
374
+ "sectionId": "JuniorEmployees_Requirement",
375
+ "text": "<p>Junior employees already prepare the decision, but especially exceptional requests take a lot of effort and need experienced employees to take the final result decision.</p>",
376
+ "startOffset": 13,
377
+ "endOffset": 182
378
+ }
379
+ }
380
+ },
381
+ {
382
+ "concept": {
383
+ "_id": "n37CaterToADiverseUserBase",
384
+ "modelCategory": "Requirements",
385
+ "label": "Cater to a diverse user base",
386
+ "_links": {
387
+ "self": {
388
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n37CaterToADiverseUserBase"
389
+ },
390
+ "concepttype": {
391
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
392
+ }
393
+ },
394
+ "sectionFragment": {
395
+ "sectionId": "CaterToADiverseUserBase",
396
+ "text": "<p>Cater to a diverse user base</p>",
397
+ "startOffset": 0,
398
+ "endOffset": 28
399
+ }
400
+ }
401
+ },
402
+ {
403
+ "concept": {
404
+ "_id": "ProtectSensitiveApplicantDataWithRobustSecurityMeasures",
405
+ "modelCategory": "Requirements",
406
+ "label": "Protect sensitive applicant data with robust security measures",
407
+ "_links": {
408
+ "self": {
409
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ProtectSensitiveApplicantDataWithRobustSecurityMeasures"
410
+ },
411
+ "concepttype": {
412
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
413
+ }
414
+ },
415
+ "sectionFragment": {
416
+ "sectionId": "DataSecurityAndPrivacy_Requirement"
417
+ }
418
+ }
419
+ },
420
+ {
421
+ "concept": {
422
+ "_id": "n71NoProperAuthenticationMechanismAvailableForApplicants",
423
+ "modelCategory": "Requirements",
424
+ "label": "No proper authentication mechanism available for applicants",
425
+ "_links": {
426
+ "self": {
427
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n71NoProperAuthenticationMechanismAvailableForApplicants"
428
+ },
429
+ "concepttype": {
430
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
431
+ }
432
+ },
433
+ "sectionFragment": {
434
+ "sectionId": "NoProperAuthenticationMechanismAvailableApplicants",
435
+ "text": "<p>No proper authentication mechanism available for applicants</p>",
436
+ "startOffset": 0,
437
+ "endOffset": 59
438
+ }
439
+ }
440
+ },
441
+ {
442
+ "concept": {
443
+ "_id": "AutomaticallyCheckApplicationsForComplianceWithGuidelines",
444
+ "modelCategory": "Requirements",
445
+ "label": "Automatically check applications for compliance with guidelines",
446
+ "_links": {
447
+ "self": {
448
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/AutomaticallyCheckApplicationsForComplianceWithGuidelines"
449
+ },
450
+ "concepttype": {
451
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
452
+ }
453
+ },
454
+ "sectionFragment": {
455
+ "sectionId": "ComplianceChecks_Requirement"
456
+ }
457
+ }
458
+ },
459
+ {
460
+ "concept": {
461
+ "_id": "FlexibilityInHandlingVariousFundingPrograms",
462
+ "modelCategory": "Requirements",
463
+ "label": "Flexibility in handling various funding programs",
464
+ "_links": {
465
+ "self": {
466
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/FlexibilityInHandlingVariousFundingPrograms"
467
+ },
468
+ "concepttype": {
469
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
470
+ }
471
+ },
472
+ "sectionFragment": {
473
+ "sectionId": "FlexibilityInHandlingVariousFundingPrograms"
474
+ }
475
+ }
476
+ },
477
+ {
478
+ "concept": {
479
+ "_id": "n25KeepApplicantsInformedAndEngaged",
480
+ "modelCategory": "Requirements",
481
+ "label": "Keep applicants informed and engaged",
482
+ "_links": {
483
+ "self": {
484
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n25KeepApplicantsInformedAndEngaged"
485
+ },
486
+ "concepttype": {
487
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
488
+ }
489
+ },
490
+ "sectionFragment": {
491
+ "sectionId": "KeepApplicantsInformedAndEngaged",
492
+ "text": "<p>Keep applicants informed and engaged</p>",
493
+ "startOffset": 0,
494
+ "endOffset": 36
495
+ }
496
+ }
497
+ },
498
+ {
499
+ "concept": {
500
+ "_id": "MaintainAdherenceToFundingRules",
501
+ "modelCategory": "Requirements",
502
+ "label": "Maintain adherence to funding rules",
503
+ "_links": {
504
+ "self": {
505
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/MaintainAdherenceToFundingRules"
506
+ },
507
+ "concepttype": {
508
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
509
+ }
510
+ },
511
+ "sectionFragment": {
512
+ "sectionId": "MaintainAdherenceToFundingRules"
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "concept": {
518
+ "_id": "n36IncreaseAccessibilityAndConvenience",
519
+ "modelCategory": "Requirements",
520
+ "label": "Increase accessibility and convenience",
521
+ "_links": {
522
+ "self": {
523
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n36IncreaseAccessibilityAndConvenience"
524
+ },
525
+ "concepttype": {
526
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
527
+ }
528
+ },
529
+ "sectionFragment": {
530
+ "sectionId": "IncreaseAccessibilityAndConvenience",
531
+ "text": "<p>Increase accessibility and convenience</p>",
532
+ "startOffset": 0,
533
+ "endOffset": 38
534
+ }
535
+ }
536
+ },
537
+ {
538
+ "concept": {
539
+ "_id": "StreamlineTheReviewProcess",
540
+ "modelCategory": "Requirements",
541
+ "label": "Streamline the review process",
542
+ "_links": {
543
+ "self": {
544
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/StreamlineTheReviewProcess"
545
+ },
546
+ "concepttype": {
547
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
548
+ }
549
+ },
550
+ "sectionFragment": {
551
+ "sectionId": "StreamlineTheReviewProcess"
552
+ }
553
+ }
554
+ },
555
+ {
556
+ "concept": {
557
+ "_id": "n50ProvideToolsToAssistReviewersInDecision_making",
558
+ "modelCategory": "Requirements",
559
+ "label": "Provide tools to assist reviewers in decision-making",
560
+ "_links": {
561
+ "self": {
562
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n50ProvideToolsToAssistReviewersInDecision_making"
563
+ },
564
+ "concepttype": {
565
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
566
+ }
567
+ },
568
+ "sectionFragment": {
569
+ "sectionId": "DecisionSupportTools_Requirement",
570
+ "text": "<p>Provide tools to assist reviewers in decision-making.</p>",
571
+ "startOffset": 13,
572
+ "endOffset": 66
573
+ }
574
+ }
575
+ },
576
+ {
577
+ "concept": {
578
+ "_id": "EnableApplicantsToCalculateAndSubmitDetailedBudgets",
579
+ "modelCategory": "Requirements",
580
+ "label": "Enable applicants to calculate and submit detailed budgets.",
581
+ "_links": {
582
+ "self": {
583
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnableApplicantsToCalculateAndSubmitDetailedBudgets"
584
+ },
585
+ "concepttype": {
586
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
587
+ }
588
+ },
589
+ "sectionFragment": {
590
+ "sectionId": "BudgetCalculation_Requirement"
591
+ }
592
+ }
593
+ },
594
+ {
595
+ "concept": {
596
+ "_id": "n45ApplicantsMustBeAbleToSubmitDetailedProjectProposals",
597
+ "modelCategory": "Requirements",
598
+ "label": "Applicants must be able to submit detailed project proposals.",
599
+ "_links": {
600
+ "self": {
601
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n45ApplicantsMustBeAbleToSubmitDetailedProjectProposals"
602
+ },
603
+ "concepttype": {
604
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
605
+ }
606
+ },
607
+ "sectionFragment": {
608
+ "sectionId": "ProjectProposalSubmission_Requirement",
609
+ "text": "<p>Applicants must be able to submit detailed project proposals.</p>",
610
+ "startOffset": 13,
611
+ "endOffset": 74
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "concept": {
617
+ "_id": "DesignElementsAreTracedToTheOriginalSource",
618
+ "modelCategory": "Requirements",
619
+ "label": "Design elements are traced to the original source",
620
+ "_links": {
621
+ "self": {
622
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/DesignElementsAreTracedToTheOriginalSource"
623
+ },
624
+ "concepttype": {
625
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
626
+ }
627
+ },
628
+ "sectionFragment": {
629
+ "sectionId": "DesignElementsTracedToOriginalSource_Requirement"
630
+ }
631
+ }
632
+ },
633
+ {
634
+ "concept": {
635
+ "_id": "n62OfferTrainingMaterialsForNewUsersAndReviewers",
636
+ "modelCategory": "Requirements",
637
+ "label": "Offer training materials for new users and reviewers",
638
+ "_links": {
639
+ "self": {
640
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n62OfferTrainingMaterialsForNewUsersAndReviewers"
641
+ },
642
+ "concepttype": {
643
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
644
+ }
645
+ },
646
+ "sectionFragment": {
647
+ "sectionId": "TrainingModules_Requirement",
648
+ "text": "<p>Offer training materials for new users and reviewers.</p>",
649
+ "startOffset": 13,
650
+ "endOffset": 66
651
+ }
652
+ }
653
+ },
654
+ {
655
+ "concept": {
656
+ "_id": "BuildARegisterOfApplicants",
657
+ "modelCategory": "Requirements",
658
+ "label": "Build a register of applicants",
659
+ "_links": {
660
+ "self": {
661
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/BuildARegisterOfApplicants"
662
+ },
663
+ "concepttype": {
664
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
665
+ }
666
+ },
667
+ "sectionFragment": {
668
+ "sectionId": "RegisterOfApplicants_Requirement"
669
+ }
670
+ }
671
+ },
672
+ {
673
+ "concept": {
674
+ "_id": "n24EnhanceTransparencyAndCommunication",
675
+ "modelCategory": "Requirements",
676
+ "label": "Enhance transparency and communication",
677
+ "_links": {
678
+ "self": {
679
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n24EnhanceTransparencyAndCommunication"
680
+ },
681
+ "concepttype": {
682
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
683
+ }
684
+ },
685
+ "sectionFragment": {
686
+ "sectionId": "EnhanceTransparencyAndCommunication",
687
+ "text": "<p>Enhance transparency and communication</p>",
688
+ "startOffset": 0,
689
+ "endOffset": 38
690
+ }
691
+ }
692
+ },
693
+ {
694
+ "concept": {
695
+ "_id": "n40FlexibilityInHandlingVariousFundingPrograms",
696
+ "modelCategory": "Requirements",
697
+ "label": "Flexibility in handling various funding programs",
698
+ "_links": {
699
+ "self": {
700
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n40FlexibilityInHandlingVariousFundingPrograms"
701
+ },
702
+ "concepttype": {
703
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
704
+ }
705
+ },
706
+ "sectionFragment": {
707
+ "sectionId": "FlexibilityInHandlingVariousFundingPrograms",
708
+ "text": "<p>Flexibility in handling various funding programs</p>",
709
+ "startOffset": 0,
710
+ "endOffset": 48
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "concept": {
716
+ "_id": "EnhanceTransparencyAndCommunication",
717
+ "modelCategory": "Requirements",
718
+ "label": "Enhance transparency and communication",
719
+ "_links": {
720
+ "self": {
721
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnhanceTransparencyAndCommunication"
722
+ },
723
+ "concepttype": {
724
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
725
+ }
726
+ },
727
+ "sectionFragment": {
728
+ "sectionId": "EnhanceTransparencyAndCommunication"
729
+ }
730
+ }
731
+ },
732
+ {
733
+ "concept": {
734
+ "_id": "ApplicantsShouldBeAbleToUploadSupportingDocuments",
735
+ "modelCategory": "Requirements",
736
+ "label": "Applicants should be able to upload supporting documents.",
737
+ "_links": {
738
+ "self": {
739
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ApplicantsShouldBeAbleToUploadSupportingDocuments"
740
+ },
741
+ "concepttype": {
742
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
743
+ }
744
+ },
745
+ "sectionFragment": {
746
+ "sectionId": "DocumentUpload_Requirement"
747
+ }
748
+ }
749
+ },
750
+ {
751
+ "concept": {
752
+ "_id": "StreamlineDataExchangeAndReduceRedundancy",
753
+ "modelCategory": "Requirements",
754
+ "label": "Streamline data exchange and reduce redundancy",
755
+ "_links": {
756
+ "self": {
757
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/StreamlineDataExchangeAndReduceRedundancy"
758
+ },
759
+ "concepttype": {
760
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
761
+ }
762
+ },
763
+ "sectionFragment": {
764
+ "sectionId": "StreamlineDataExchangeAndReduceRedundancy"
765
+ }
766
+ }
767
+ },
768
+ {
769
+ "concept": {
770
+ "_id": "n59EnsureTheSystemIsAccessibleOnMobileDevices",
771
+ "modelCategory": "Requirements",
772
+ "label": "Ensure the system is accessible on mobile devices",
773
+ "_links": {
774
+ "self": {
775
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n59EnsureTheSystemIsAccessibleOnMobileDevices"
776
+ },
777
+ "concepttype": {
778
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
779
+ }
780
+ },
781
+ "sectionFragment": {
782
+ "sectionId": "MobileAccessibility_Requirement",
783
+ "text": "<p>Ensure the system is accessible on mobile devices.</p>",
784
+ "startOffset": 13,
785
+ "endOffset": 63
786
+ }
787
+ }
788
+ },
789
+ {
790
+ "concept": {
791
+ "_id": "ImplementScoringSystemsBasedOnPredefinedCriteria",
792
+ "modelCategory": "Requirements",
793
+ "label": "Implement scoring systems based on predefined criteria",
794
+ "_links": {
795
+ "self": {
796
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ImplementScoringSystemsBasedOnPredefinedCriteria"
797
+ },
798
+ "concepttype": {
799
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
800
+ }
801
+ },
802
+ "sectionFragment": {
803
+ "sectionId": "ScoringAndEvaluationCriteria_Requirement"
804
+ }
805
+ }
806
+ },
807
+ {
808
+ "concept": {
809
+ "_id": "TraceabilityToTheSourceOfTheRegulationsAndPolicies",
810
+ "modelCategory": "Requirements",
811
+ "label": "Traceability to the source of the regulations and policies",
812
+ "_links": {
813
+ "self": {
814
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/TraceabilityToTheSourceOfTheRegulationsAndPolicies"
815
+ },
816
+ "concepttype": {
817
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
818
+ }
819
+ },
820
+ "sectionFragment": {
821
+ "sectionId": "TraceabilityToTheSource_Requirement"
822
+ }
823
+ }
824
+ },
825
+ {
826
+ "concept": {
827
+ "_id": "BusinessRulesCanEasilyBeAdapted",
828
+ "modelCategory": "Requirements",
829
+ "label": "Business rules can easily be adapted",
830
+ "_links": {
831
+ "self": {
832
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/BusinessRulesCanEasilyBeAdapted"
833
+ },
834
+ "concepttype": {
835
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
836
+ }
837
+ },
838
+ "sectionFragment": {
839
+ "sectionId": "BusinessRulesCanEasilyBeAdapted"
840
+ }
841
+ }
842
+ },
843
+ {
844
+ "concept": {
845
+ "_id": "EnhanceUserSatisfactionAndSystemUsability",
846
+ "modelCategory": "Requirements",
847
+ "label": "Enhance user satisfaction and system usability",
848
+ "_links": {
849
+ "self": {
850
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnhanceUserSatisfactionAndSystemUsability"
851
+ },
852
+ "concepttype": {
853
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
854
+ }
855
+ },
856
+ "sectionFragment": {
857
+ "sectionId": "EnhanceUserSatisfactionAndSystemUsability"
858
+ }
859
+ }
860
+ },
861
+ {
862
+ "concept": {
863
+ "_id": "n32FacilitateData_drivenDecision_making",
864
+ "modelCategory": "Requirements",
865
+ "label": "Facilitate data-driven decision-making",
866
+ "_links": {
867
+ "self": {
868
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n32FacilitateData_drivenDecision_making"
869
+ },
870
+ "concepttype": {
871
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
872
+ }
873
+ },
874
+ "sectionFragment": {
875
+ "sectionId": "FacilitateDataDrivenDecisionMaking",
876
+ "text": "<p>Facilitate data-driven decision-making</p>",
877
+ "startOffset": 0,
878
+ "endOffset": 38
879
+ }
880
+ }
881
+ },
882
+ {
883
+ "concept": {
884
+ "_id": "MaintainLogsOfAllActionsAndChangesWithinTheSystem",
885
+ "modelCategory": "Requirements",
886
+ "label": "Maintain logs of all actions and changes within the system",
887
+ "_links": {
888
+ "self": {
889
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/MaintainLogsOfAllActionsAndChangesWithinTheSystem"
890
+ },
891
+ "concepttype": {
892
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
893
+ }
894
+ },
895
+ "sectionFragment": {
896
+ "sectionId": "AuditTrails_Requirement"
897
+ }
898
+ }
899
+ },
900
+ {
901
+ "concept": {
902
+ "_id": "TheOutcomeMustBeExplainedInNauturalLanguage",
903
+ "modelCategory": "Requirements",
904
+ "label": "The outcome must be explained in nautural language",
905
+ "_links": {
906
+ "self": {
907
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/TheOutcomeMustBeExplainedInNauturalLanguage"
908
+ },
909
+ "concepttype": {
910
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
911
+ }
912
+ },
913
+ "sectionFragment": {
914
+ "sectionId": "OutcomeExplainedInNaturalLanguage"
915
+ }
916
+ }
917
+ },
918
+ {
919
+ "concept": {
920
+ "_id": "n64InTheBackOfficeDepartmentThisIncludesLessThanTenEmployeesWith",
921
+ "modelCategory": "Requirements",
922
+ "label": "In the back office department this includes less than ten employees with more than 10 years of experience using back office applications",
923
+ "_links": {
924
+ "self": {
925
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n64InTheBackOfficeDepartmentThisIncludesLessThanTenEmployeesWith"
926
+ },
927
+ "concepttype": {
928
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
929
+ }
930
+ },
931
+ "sectionFragment": {
932
+ "sectionId": "ExperiencedEmployees_Requirement",
933
+ "text": "<p>In the back office department this includes less than ten employees with more than 10 years of experience using back office applications.</p>",
934
+ "startOffset": 13,
935
+ "endOffset": 150
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "concept": {
941
+ "_id": "TheApplicationFunctionalityIsEasilyRecognizableForBackOfficeEmpl",
942
+ "modelCategory": "Requirements",
943
+ "label": "The application functionality is easily recognizable for back office employees",
944
+ "_links": {
945
+ "self": {
946
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/TheApplicationFunctionalityIsEasilyRecognizableForBackOfficeEmpl"
947
+ },
948
+ "concepttype": {
949
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
950
+ }
951
+ },
952
+ "sectionFragment": {
953
+ "sectionId": "EasilyRecognizableBackOfficeEmployees"
954
+ }
955
+ }
956
+ },
957
+ {
958
+ "concept": {
959
+ "_id": "CommonCaseManagementPatternsAreRespected",
960
+ "modelCategory": "Requirements",
961
+ "label": "Common case management patterns are respected",
962
+ "_links": {
963
+ "self": {
964
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/CommonCaseManagementPatternsAreRespected"
965
+ },
966
+ "concepttype": {
967
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
968
+ }
969
+ },
970
+ "sectionFragment": {
971
+ "sectionId": "CommonCaseManagementPatterns_Requirement"
972
+ }
973
+ }
974
+ },
975
+ {
976
+ "concept": {
977
+ "_id": "FacilitateAccessAndPersonalizeUserExperience",
978
+ "modelCategory": "Requirements",
979
+ "label": "Facilitate access and personalize user experience",
980
+ "_links": {
981
+ "self": {
982
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/FacilitateAccessAndPersonalizeUserExperience"
983
+ },
984
+ "concepttype": {
985
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
986
+ }
987
+ },
988
+ "sectionFragment": {
989
+ "sectionId": "FacilitateAccessAndPersonalizeUserExperience"
990
+ }
991
+ }
992
+ },
993
+ {
994
+ "concept": {
995
+ "_id": "n76TheApplicationFunctionalityIsEasilyRecognizableForBackOfficeE",
996
+ "modelCategory": "Requirements",
997
+ "label": "The application functionality is easily recognizable for back office employees",
998
+ "_links": {
999
+ "self": {
1000
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n76TheApplicationFunctionalityIsEasilyRecognizableForBackOfficeE"
1001
+ },
1002
+ "concepttype": {
1003
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
1004
+ }
1005
+ },
1006
+ "sectionFragment": {
1007
+ "sectionId": "EasilyRecognizableBackOfficeEmployees",
1008
+ "text": "<p>The application functionality is easily recognizable for back office employees</p>",
1009
+ "startOffset": 0,
1010
+ "endOffset": 78
1011
+ }
1012
+ }
1013
+ },
1014
+ {
1015
+ "concept": {
1016
+ "_id": "ExperiencedEmployeesAreCurrentlyAlwaysNeededToFinalizeTheResult",
1017
+ "modelCategory": "Requirements",
1018
+ "label": "Experienced employees are currently always needed to finalize the result",
1019
+ "_links": {
1020
+ "self": {
1021
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ExperiencedEmployeesAreCurrentlyAlwaysNeededToFinalizeTheResult"
1022
+ },
1023
+ "concepttype": {
1024
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
1025
+ }
1026
+ },
1027
+ "sectionFragment": {
1028
+ "sectionId": "ExperiencedEmployeesNeededFinalizeResult"
1029
+ }
1030
+ }
1031
+ },
1032
+ {
1033
+ "concept": {
1034
+ "_id": "n20TransparentAndCompliantDecisions",
1035
+ "modelCategory": "Requirements",
1036
+ "label": "Transparent and compliant decisions",
1037
+ "_links": {
1038
+ "self": {
1039
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n20TransparentAndCompliantDecisions"
1040
+ },
1041
+ "concepttype": {
1042
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1043
+ }
1044
+ },
1045
+ "sectionFragment": {
1046
+ "sectionId": "TransparentAndCompliantDecisions",
1047
+ "text": "<p>Transparent and compliant decisions</p>",
1048
+ "startOffset": 0,
1049
+ "endOffset": 35
1050
+ }
1051
+ }
1052
+ },
1053
+ {
1054
+ "concept": {
1055
+ "_id": "n47ApplicantsMustBeAbleToTrackTheStatusOfTheirSubmissions",
1056
+ "modelCategory": "Requirements",
1057
+ "label": "Applicants must be able to track the status of their submissions.",
1058
+ "_links": {
1059
+ "self": {
1060
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n47ApplicantsMustBeAbleToTrackTheStatusOfTheirSubmissions"
1061
+ },
1062
+ "concepttype": {
1063
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1064
+ }
1065
+ },
1066
+ "sectionFragment": {
1067
+ "sectionId": "ApplicationTracking_Requirement",
1068
+ "text": "<p>Applicants must be able to track the status of their submissions.</p>",
1069
+ "startOffset": 13,
1070
+ "endOffset": 78
1071
+ }
1072
+ }
1073
+ },
1074
+ {
1075
+ "concept": {
1076
+ "_id": "AllowCustomizationOfApplicationFormsForDifferentGrants",
1077
+ "modelCategory": "Requirements",
1078
+ "label": "Allow customization of application forms for different grants",
1079
+ "_links": {
1080
+ "self": {
1081
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/AllowCustomizationOfApplicationFormsForDifferentGrants"
1082
+ },
1083
+ "concepttype": {
1084
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1085
+ }
1086
+ },
1087
+ "sectionFragment": {
1088
+ "sectionId": "CustomizableApplicationForms_Requirement"
1089
+ }
1090
+ }
1091
+ },
1092
+ {
1093
+ "concept": {
1094
+ "_id": "AllowUsersToProvideFeedbackOnTheApplicationProcess",
1095
+ "modelCategory": "Requirements",
1096
+ "label": "Allow users to provide feedback on the application process",
1097
+ "_links": {
1098
+ "self": {
1099
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/AllowUsersToProvideFeedbackOnTheApplicationProcess"
1100
+ },
1101
+ "concepttype": {
1102
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1103
+ }
1104
+ },
1105
+ "sectionFragment": {
1106
+ "sectionId": "FeedbackMechanism_Requirement"
1107
+ }
1108
+ }
1109
+ },
1110
+ {
1111
+ "concept": {
1112
+ "_id": "n44UsersMustBeAbleToCreateAccountsAndSecurelyLogIn",
1113
+ "modelCategory": "Requirements",
1114
+ "label": "Users must be able to create accounts and securely log in.",
1115
+ "_links": {
1116
+ "self": {
1117
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n44UsersMustBeAbleToCreateAccountsAndSecurelyLogIn"
1118
+ },
1119
+ "concepttype": {
1120
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1121
+ }
1122
+ },
1123
+ "sectionFragment": {
1124
+ "sectionId": "UserRegistrationAndLogin_Requirement",
1125
+ "text": "<p>Users must be able to create accounts and securely log in.</p>",
1126
+ "startOffset": 12,
1127
+ "endOffset": 71
1128
+ }
1129
+ }
1130
+ },
1131
+ {
1132
+ "concept": {
1133
+ "_id": "n49ReviewersShouldHaveAStructuredWorkflowForEvaluatingApplicatio",
1134
+ "modelCategory": "Requirements",
1135
+ "label": "Reviewers should have a structured workflow for evaluating applications.",
1136
+ "_links": {
1137
+ "self": {
1138
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n49ReviewersShouldHaveAStructuredWorkflowForEvaluatingApplicatio"
1139
+ },
1140
+ "concepttype": {
1141
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1142
+ }
1143
+ },
1144
+ "sectionFragment": {
1145
+ "sectionId": "ReviewWorkflowManagement_Requirement",
1146
+ "text": "<p>Reviewers should have a structured workflow for evaluating applications.</p>",
1147
+ "startOffset": 13,
1148
+ "endOffset": 85
1149
+ }
1150
+ }
1151
+ },
1152
+ {
1153
+ "concept": {
1154
+ "_id": "n21FacilitateAccessAndPersonalizeUserExperience",
1155
+ "modelCategory": "Requirements",
1156
+ "label": "Facilitate access and personalize user experience",
1157
+ "_links": {
1158
+ "self": {
1159
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n21FacilitateAccessAndPersonalizeUserExperience"
1160
+ },
1161
+ "concepttype": {
1162
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1163
+ }
1164
+ },
1165
+ "sectionFragment": {
1166
+ "sectionId": "FacilitateAccessAndPersonalizeUserExperience",
1167
+ "text": "<p>Facilitate access and personalize user experience</p>",
1168
+ "startOffset": 0,
1169
+ "endOffset": 49
1170
+ }
1171
+ }
1172
+ },
1173
+ {
1174
+ "concept": {
1175
+ "_id": "n29EnsureDataIntegrityAndApplicantTrust",
1176
+ "modelCategory": "Requirements",
1177
+ "label": "Ensure data integrity and applicant trust",
1178
+ "_links": {
1179
+ "self": {
1180
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n29EnsureDataIntegrityAndApplicantTrust"
1181
+ },
1182
+ "concepttype": {
1183
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1184
+ }
1185
+ },
1186
+ "sectionFragment": {
1187
+ "sectionId": "EnsureDataIntegrityAndApplicantTrust",
1188
+ "text": "<p>Ensure data integrity and applicant trust</p>",
1189
+ "startOffset": 0,
1190
+ "endOffset": 41
1191
+ }
1192
+ }
1193
+ },
1194
+ {
1195
+ "concept": {
1196
+ "_id": "ContinuousImprovementOfTheSystem",
1197
+ "modelCategory": "Requirements",
1198
+ "label": "Continuous improvement of the system",
1199
+ "_links": {
1200
+ "self": {
1201
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ContinuousImprovementOfTheSystem"
1202
+ },
1203
+ "concepttype": {
1204
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1205
+ }
1206
+ },
1207
+ "sectionFragment": {
1208
+ "sectionId": "ContinuousImprovementOfTheSystem"
1209
+ }
1210
+ }
1211
+ },
1212
+ {
1213
+ "concept": {
1214
+ "_id": "ProvideSystemSupportInMultipleLanguages",
1215
+ "modelCategory": "Requirements",
1216
+ "label": "Provide system support in multiple languages",
1217
+ "_links": {
1218
+ "self": {
1219
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ProvideSystemSupportInMultipleLanguages"
1220
+ },
1221
+ "concepttype": {
1222
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1223
+ }
1224
+ },
1225
+ "sectionFragment": {
1226
+ "sectionId": "MultilingualSupport_Requirement"
1227
+ }
1228
+ }
1229
+ },
1230
+ {
1231
+ "concept": {
1232
+ "_id": "ApplicantsMustBeAbleToSubmitDetailedProjectProposals",
1233
+ "modelCategory": "Requirements",
1234
+ "label": "Applicants must be able to submit detailed project proposals.",
1235
+ "_links": {
1236
+ "self": {
1237
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ApplicantsMustBeAbleToSubmitDetailedProjectProposals"
1238
+ },
1239
+ "concepttype": {
1240
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1241
+ }
1242
+ },
1243
+ "sectionFragment": {
1244
+ "sectionId": "ProjectProposalSubmission_Requirement"
1245
+ }
1246
+ }
1247
+ },
1248
+ {
1249
+ "concept": {
1250
+ "_id": "n54GenerateReportsOnApplicationAndReviewStatistics",
1251
+ "modelCategory": "Requirements",
1252
+ "label": "Generate reports on application and review statistics",
1253
+ "_links": {
1254
+ "self": {
1255
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n54GenerateReportsOnApplicationAndReviewStatistics"
1256
+ },
1257
+ "concepttype": {
1258
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1259
+ }
1260
+ },
1261
+ "sectionFragment": {
1262
+ "sectionId": "ReportingAndAnalytics_Requirement",
1263
+ "text": "<p>Generate reports on application and review statistics.</p>",
1264
+ "startOffset": 13,
1265
+ "endOffset": 67
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "concept": {
1271
+ "_id": "n30EnsureFinancialFeasibilityOfProjects",
1272
+ "modelCategory": "Requirements",
1273
+ "label": "Ensure financial feasibility of projects",
1274
+ "_links": {
1275
+ "self": {
1276
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n30EnsureFinancialFeasibilityOfProjects"
1277
+ },
1278
+ "concepttype": {
1279
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1280
+ }
1281
+ },
1282
+ "sectionFragment": {
1283
+ "sectionId": "EnsureFinancialFeasibilityOfProjects",
1284
+ "text": "<p>Ensure financial feasibility of projects</p>",
1285
+ "startOffset": 0,
1286
+ "endOffset": 40
1287
+ }
1288
+ }
1289
+ },
1290
+ {
1291
+ "concept": {
1292
+ "_id": "EnsureEffectiveUseOfTheSystem",
1293
+ "modelCategory": "Requirements",
1294
+ "label": "Ensure effective use of the system",
1295
+ "_links": {
1296
+ "self": {
1297
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureEffectiveUseOfTheSystem"
1298
+ },
1299
+ "concepttype": {
1300
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1301
+ }
1302
+ },
1303
+ "sectionFragment": {
1304
+ "sectionId": "EnsureEffectiveUseOfTheSystem"
1305
+ }
1306
+ }
1307
+ },
1308
+ {
1309
+ "concept": {
1310
+ "_id": "ImproveTheQualityAndConsistencyOfDecisions",
1311
+ "modelCategory": "Requirements",
1312
+ "label": "Improve the quality and consistency of decisions",
1313
+ "_links": {
1314
+ "self": {
1315
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ImproveTheQualityAndConsistencyOfDecisions"
1316
+ },
1317
+ "concepttype": {
1318
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1319
+ }
1320
+ },
1321
+ "sectionFragment": {
1322
+ "sectionId": "ImproveTheQualityAndConsistencyOfDecisions"
1323
+ }
1324
+ }
1325
+ },
1326
+ {
1327
+ "concept": {
1328
+ "_id": "EnsureThoroughReviewAndEvaluation",
1329
+ "modelCategory": "Requirements",
1330
+ "label": "Ensure thorough review and evaluation",
1331
+ "_links": {
1332
+ "self": {
1333
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureThoroughReviewAndEvaluation"
1334
+ },
1335
+ "concepttype": {
1336
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1337
+ }
1338
+ },
1339
+ "sectionFragment": {
1340
+ "sectionId": "EnsureThoroughReviewAndEvaluation"
1341
+ }
1342
+ }
1343
+ },
1344
+ {
1345
+ "concept": {
1346
+ "_id": "n33StreamlineDataExchangeAndReduceRedundancy",
1347
+ "modelCategory": "Requirements",
1348
+ "label": "Streamline data exchange and reduce redundancy",
1349
+ "_links": {
1350
+ "self": {
1351
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n33StreamlineDataExchangeAndReduceRedundancy"
1352
+ },
1353
+ "concepttype": {
1354
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1355
+ }
1356
+ },
1357
+ "sectionFragment": {
1358
+ "sectionId": "StreamlineDataExchangeAndReduceRedundancy",
1359
+ "text": "<p>Streamline data exchange and reduce redundancy</p>",
1360
+ "startOffset": 0,
1361
+ "endOffset": 46
1362
+ }
1363
+ }
1364
+ },
1365
+ {
1366
+ "concept": {
1367
+ "_id": "EnsureTheSystemIsAccessibleOnMobileDevices",
1368
+ "modelCategory": "Requirements",
1369
+ "label": "Ensure the system is accessible on mobile devices",
1370
+ "_links": {
1371
+ "self": {
1372
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureTheSystemIsAccessibleOnMobileDevices"
1373
+ },
1374
+ "concepttype": {
1375
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1376
+ }
1377
+ },
1378
+ "sectionFragment": {
1379
+ "sectionId": "MobileAccessibility_Requirement"
1380
+ }
1381
+ }
1382
+ },
1383
+ {
1384
+ "concept": {
1385
+ "_id": "CollectComprehensiveProjectInformation",
1386
+ "modelCategory": "Requirements",
1387
+ "label": "Collect comprehensive project information",
1388
+ "_links": {
1389
+ "self": {
1390
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/CollectComprehensiveProjectInformation"
1391
+ },
1392
+ "concepttype": {
1393
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1394
+ }
1395
+ },
1396
+ "sectionFragment": {
1397
+ "sectionId": "CollectComprehensiveProjectInformation"
1398
+ }
1399
+ }
1400
+ },
1401
+ {
1402
+ "concept": {
1403
+ "_id": "GenerateReportsOnApplicationAndReviewStatistics",
1404
+ "modelCategory": "Requirements",
1405
+ "label": "Generate reports on application and review statistics",
1406
+ "_links": {
1407
+ "self": {
1408
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/GenerateReportsOnApplicationAndReviewStatistics"
1409
+ },
1410
+ "concepttype": {
1411
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1412
+ }
1413
+ },
1414
+ "sectionFragment": {
1415
+ "sectionId": "ReportingAndAnalytics_Requirement"
1416
+ }
1417
+ }
1418
+ },
1419
+ {
1420
+ "concept": {
1421
+ "_id": "n75TheOutcomeMustBeExplainedInNaturalLanguage",
1422
+ "modelCategory": "Requirements",
1423
+ "label": "The outcome must be explained in natural language",
1424
+ "_links": {
1425
+ "self": {
1426
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n75TheOutcomeMustBeExplainedInNaturalLanguage"
1427
+ },
1428
+ "concepttype": {
1429
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
1430
+ }
1431
+ },
1432
+ "sectionFragment": {
1433
+ "sectionId": "OutcomeExplainedInNaturalLanguage",
1434
+ "text": "<p>The outcome must be explained in natural Language</p>",
1435
+ "startOffset": 0,
1436
+ "endOffset": 49
1437
+ }
1438
+ }
1439
+ },
1440
+ {
1441
+ "concept": {
1442
+ "_id": "IncreaseAccessibilityAndConvenience",
1443
+ "modelCategory": "Requirements",
1444
+ "label": "Increase accessibility and convenience",
1445
+ "_links": {
1446
+ "self": {
1447
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/IncreaseAccessibilityAndConvenience"
1448
+ },
1449
+ "concepttype": {
1450
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1451
+ }
1452
+ },
1453
+ "sectionFragment": {
1454
+ "sectionId": "IncreaseAccessibilityAndConvenience"
1455
+ }
1456
+ }
1457
+ },
1458
+ {
1459
+ "concept": {
1460
+ "_id": "ThereIsALackOfExperiencedBackOfficeEmployees",
1461
+ "modelCategory": "Requirements",
1462
+ "label": "There is a lack of experienced back office employees",
1463
+ "_links": {
1464
+ "self": {
1465
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ThereIsALackOfExperiencedBackOfficeEmployees"
1466
+ },
1467
+ "concepttype": {
1468
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
1469
+ }
1470
+ },
1471
+ "sectionFragment": {
1472
+ "sectionId": "LackExperiencedBackOfficeEmployees"
1473
+ }
1474
+ }
1475
+ },
1476
+ {
1477
+ "concept": {
1478
+ "_id": "KeepApplicantsInformedAndEngaged",
1479
+ "modelCategory": "Requirements",
1480
+ "label": "Keep applicants informed and engaged",
1481
+ "_links": {
1482
+ "self": {
1483
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/KeepApplicantsInformedAndEngaged"
1484
+ },
1485
+ "concepttype": {
1486
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1487
+ }
1488
+ },
1489
+ "sectionFragment": {
1490
+ "sectionId": "KeepApplicantsInformedAndEngaged"
1491
+ }
1492
+ }
1493
+ },
1494
+ {
1495
+ "concept": {
1496
+ "_id": "EnsureAccountabilityAndTraceability",
1497
+ "modelCategory": "Requirements",
1498
+ "label": "Ensure accountability and traceability",
1499
+ "_links": {
1500
+ "self": {
1501
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureAccountabilityAndTraceability"
1502
+ },
1503
+ "concepttype": {
1504
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1505
+ }
1506
+ },
1507
+ "sectionFragment": {
1508
+ "sectionId": "EnsureAccountabilityAndTraceability"
1509
+ }
1510
+ }
1511
+ },
1512
+ {
1513
+ "concept": {
1514
+ "_id": "TransparentAndCompliantDecisions",
1515
+ "modelCategory": "Requirements",
1516
+ "label": "Transparent and compliant decisions",
1517
+ "_links": {
1518
+ "self": {
1519
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/TransparentAndCompliantDecisions"
1520
+ },
1521
+ "concepttype": {
1522
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1523
+ }
1524
+ },
1525
+ "sectionFragment": {
1526
+ "sectionId": "TransparentAndCompliantDecisions"
1527
+ }
1528
+ }
1529
+ },
1530
+ {
1531
+ "concept": {
1532
+ "_id": "n39EnsureEffectiveUseOfTheSystem",
1533
+ "modelCategory": "Requirements",
1534
+ "label": "Ensure effective use of the system",
1535
+ "_links": {
1536
+ "self": {
1537
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n39EnsureEffectiveUseOfTheSystem"
1538
+ },
1539
+ "concepttype": {
1540
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1541
+ }
1542
+ },
1543
+ "sectionFragment": {
1544
+ "sectionId": "EnsureEffectiveUseOfTheSystem",
1545
+ "text": "<p>Ensure effective use of the system</p>",
1546
+ "startOffset": 0,
1547
+ "endOffset": 34
1548
+ }
1549
+ }
1550
+ },
1551
+ {
1552
+ "concept": {
1553
+ "_id": "EnsureObjectiveAndFairAssessments",
1554
+ "modelCategory": "Requirements",
1555
+ "label": "Ensure objective and fair assessments",
1556
+ "_links": {
1557
+ "self": {
1558
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureObjectiveAndFairAssessments"
1559
+ },
1560
+ "concepttype": {
1561
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1562
+ }
1563
+ },
1564
+ "sectionFragment": {
1565
+ "sectionId": "EnsureObjectiveAndFairAssessments"
1566
+ }
1567
+ }
1568
+ },
1569
+ {
1570
+ "concept": {
1571
+ "_id": "JuniorEmployeesAlreadyPrepareTheDecisionButEspeciallyExceptional",
1572
+ "modelCategory": "Requirements",
1573
+ "label": "Junior employees already prepare the decision, but especially exceptional requests take a lot of effort and need experienced employees to take the final result decision",
1574
+ "_links": {
1575
+ "self": {
1576
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/JuniorEmployeesAlreadyPrepareTheDecisionButEspeciallyExceptional"
1577
+ },
1578
+ "concepttype": {
1579
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1580
+ }
1581
+ },
1582
+ "sectionFragment": {
1583
+ "sectionId": "JuniorEmployees_Requirement"
1584
+ }
1585
+ }
1586
+ },
1587
+ {
1588
+ "concept": {
1589
+ "_id": "n23EnsureThoroughReviewAndEvaluation",
1590
+ "modelCategory": "Requirements",
1591
+ "label": "Ensure thorough review and evaluation",
1592
+ "_links": {
1593
+ "self": {
1594
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n23EnsureThoroughReviewAndEvaluation"
1595
+ },
1596
+ "concepttype": {
1597
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1598
+ }
1599
+ },
1600
+ "sectionFragment": {
1601
+ "sectionId": "EnsureThoroughReviewAndEvaluation",
1602
+ "text": "<p>Ensure thorough review and evaluation</p>",
1603
+ "startOffset": 0,
1604
+ "endOffset": 37
1605
+ }
1606
+ }
1607
+ },
1608
+ {
1609
+ "concept": {
1610
+ "_id": "n19EfficientProcessingOfApplications",
1611
+ "modelCategory": "Requirements",
1612
+ "label": "Efficient processing of applications",
1613
+ "_links": {
1614
+ "self": {
1615
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n19EfficientProcessingOfApplications"
1616
+ },
1617
+ "concepttype": {
1618
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1619
+ }
1620
+ },
1621
+ "sectionFragment": {
1622
+ "sectionId": "EfficientProcessOfApplications",
1623
+ "text": "<p>Efficient processing of applications</p>",
1624
+ "startOffset": 0,
1625
+ "endOffset": 36
1626
+ }
1627
+ }
1628
+ },
1629
+ {
1630
+ "concept": {
1631
+ "_id": "CaterToADiverseUserBase",
1632
+ "modelCategory": "Requirements",
1633
+ "label": "Cater to a diverse user base",
1634
+ "_links": {
1635
+ "self": {
1636
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/CaterToADiverseUserBase"
1637
+ },
1638
+ "concepttype": {
1639
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1640
+ }
1641
+ },
1642
+ "sectionFragment": {
1643
+ "sectionId": "CaterToADiverseUserBase"
1644
+ }
1645
+ }
1646
+ },
1647
+ {
1648
+ "concept": {
1649
+ "_id": "n63AllowCustomizationOfApplicationFormsForDifferentGrants",
1650
+ "modelCategory": "Requirements",
1651
+ "label": "Allow customization of application forms for different grants",
1652
+ "_links": {
1653
+ "self": {
1654
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n63AllowCustomizationOfApplicationFormsForDifferentGrants"
1655
+ },
1656
+ "concepttype": {
1657
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1658
+ }
1659
+ },
1660
+ "sectionFragment": {
1661
+ "sectionId": "CustomizableApplicationForms_Requirement",
1662
+ "text": "<p>Allow customization of application forms for different grants.</p>",
1663
+ "startOffset": 13,
1664
+ "endOffset": 75
1665
+ }
1666
+ }
1667
+ },
1668
+ {
1669
+ "concept": {
1670
+ "_id": "ProvideToolsToAssistReviewersInDecision_making",
1671
+ "modelCategory": "Requirements",
1672
+ "label": "Provide tools to assist reviewers in decision-making",
1673
+ "_links": {
1674
+ "self": {
1675
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ProvideToolsToAssistReviewersInDecision_making"
1676
+ },
1677
+ "concepttype": {
1678
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1679
+ }
1680
+ },
1681
+ "sectionFragment": {
1682
+ "sectionId": "DecisionSupportTools_Requirement"
1683
+ }
1684
+ }
1685
+ },
1686
+ {
1687
+ "concept": {
1688
+ "_id": "n22CollectComprehensiveProjectInformation",
1689
+ "modelCategory": "Requirements",
1690
+ "label": "Collect comprehensive project information",
1691
+ "_links": {
1692
+ "self": {
1693
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n22CollectComprehensiveProjectInformation"
1694
+ },
1695
+ "concepttype": {
1696
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1697
+ }
1698
+ },
1699
+ "sectionFragment": {
1700
+ "sectionId": "CollectComprehensiveProjectInformation",
1701
+ "text": "<p>Collect comprehensive project information</p>",
1702
+ "startOffset": 0,
1703
+ "endOffset": 41
1704
+ }
1705
+ }
1706
+ },
1707
+ {
1708
+ "concept": {
1709
+ "_id": "InTheBackOfficeDepartmentThisIncludesLessThanTenEmployeesWithMor",
1710
+ "modelCategory": "Requirements",
1711
+ "label": "In the back office department this includes less than ten employees with more than 10 years of experience using back office applications",
1712
+ "_links": {
1713
+ "self": {
1714
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/InTheBackOfficeDepartmentThisIncludesLessThanTenEmployeesWithMor"
1715
+ },
1716
+ "concepttype": {
1717
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1718
+ }
1719
+ },
1720
+ "sectionFragment": {
1721
+ "sectionId": "ExperiencedEmployees_Requirement"
1722
+ }
1723
+ }
1724
+ },
1725
+ {
1726
+ "concept": {
1727
+ "_id": "n68RulesAreCorrectlyAppliedToReachDecisionsOfEligibilityAndAmoun",
1728
+ "modelCategory": "Requirements",
1729
+ "label": "Rules are correctly applied to reach decisions of eligibility and amount of funding",
1730
+ "_links": {
1731
+ "self": {
1732
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n68RulesAreCorrectlyAppliedToReachDecisionsOfEligibilityAndAmoun"
1733
+ },
1734
+ "concepttype": {
1735
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1736
+ }
1737
+ },
1738
+ "sectionFragment": {
1739
+ "sectionId": "RulesCorrectlyApplied_Requirement",
1740
+ "text": "<p>Rules are correctly applied to reach decisions of eligibility and amount of funding</p>",
1741
+ "startOffset": 13,
1742
+ "endOffset": 96
1743
+ }
1744
+ }
1745
+ },
1746
+ {
1747
+ "concept": {
1748
+ "_id": "n48SystemMustSendAutomatedNotificationsForStatusChanges",
1749
+ "modelCategory": "Requirements",
1750
+ "label": "System must send automated notifications for status changes.",
1751
+ "_links": {
1752
+ "self": {
1753
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n48SystemMustSendAutomatedNotificationsForStatusChanges"
1754
+ },
1755
+ "concepttype": {
1756
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1757
+ }
1758
+ },
1759
+ "sectionFragment": {
1760
+ "sectionId": "AutomatedNotifications_Requirement",
1761
+ "text": "<p>System must send automated notifications for status changes.</p>",
1762
+ "startOffset": 13,
1763
+ "endOffset": 73
1764
+ }
1765
+ }
1766
+ },
1767
+ {
1768
+ "concept": {
1769
+ "_id": "n69CommonCaseManagementPatternsAreRespected",
1770
+ "modelCategory": "Requirements",
1771
+ "label": "Common case management patterns are respected",
1772
+ "_links": {
1773
+ "self": {
1774
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n69CommonCaseManagementPatternsAreRespected"
1775
+ },
1776
+ "concepttype": {
1777
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1778
+ }
1779
+ },
1780
+ "sectionFragment": {
1781
+ "sectionId": "CommonCaseManagementPatterns_Requirement",
1782
+ "text": "<p>Common case management patterns are respected</p>",
1783
+ "startOffset": 13,
1784
+ "endOffset": 58
1785
+ }
1786
+ }
1787
+ },
1788
+ {
1789
+ "concept": {
1790
+ "_id": "n60ProvideSystemSupportInMultipleLanguages",
1791
+ "modelCategory": "Requirements",
1792
+ "label": "Provide system support in multiple languages",
1793
+ "_links": {
1794
+ "self": {
1795
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n60ProvideSystemSupportInMultipleLanguages"
1796
+ },
1797
+ "concepttype": {
1798
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1799
+ }
1800
+ },
1801
+ "sectionFragment": {
1802
+ "sectionId": "MultilingualSupport_Requirement",
1803
+ "text": "<p>Provide system support in multiple languages.</p>",
1804
+ "startOffset": 13,
1805
+ "endOffset": 58
1806
+ }
1807
+ }
1808
+ },
1809
+ {
1810
+ "concept": {
1811
+ "_id": "ProvideSupportServicesForUsersEncounteringIssues",
1812
+ "modelCategory": "Requirements",
1813
+ "label": "Provide support services for users encountering issues",
1814
+ "_links": {
1815
+ "self": {
1816
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ProvideSupportServicesForUsersEncounteringIssues"
1817
+ },
1818
+ "concepttype": {
1819
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1820
+ }
1821
+ },
1822
+ "sectionFragment": {
1823
+ "sectionId": "UserSupportAndHelpdesk_Requirement"
1824
+ }
1825
+ }
1826
+ },
1827
+ {
1828
+ "concept": {
1829
+ "_id": "n41BusinessRulesCanEasilyBeAdapted",
1830
+ "modelCategory": "Requirements",
1831
+ "label": "Business rules can easily be adapted",
1832
+ "_links": {
1833
+ "self": {
1834
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n41BusinessRulesCanEasilyBeAdapted"
1835
+ },
1836
+ "concepttype": {
1837
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1838
+ }
1839
+ },
1840
+ "sectionFragment": {
1841
+ "sectionId": "BusinessRulesCanEasilyBeAdapted",
1842
+ "text": "<p>Business rules can easily be adapted</p>",
1843
+ "startOffset": 0,
1844
+ "endOffset": 36
1845
+ }
1846
+ }
1847
+ },
1848
+ {
1849
+ "concept": {
1850
+ "_id": "UsersHaveMaximumFlexibilityWithinPolicyConstraints",
1851
+ "modelCategory": "Requirements",
1852
+ "label": "Users have maximum flexibility within policy constraints",
1853
+ "_links": {
1854
+ "self": {
1855
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/UsersHaveMaximumFlexibilityWithinPolicyConstraints"
1856
+ },
1857
+ "concepttype": {
1858
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/KeySuccessFactor"
1859
+ }
1860
+ },
1861
+ "sectionFragment": {
1862
+ "sectionId": "MaximumFlexibilityWithinPolicyConstraints"
1863
+ }
1864
+ }
1865
+ },
1866
+ {
1867
+ "concept": {
1868
+ "_id": "EfficientProcessingOfApplications",
1869
+ "modelCategory": "Requirements",
1870
+ "label": "Efficient processing of applications",
1871
+ "_links": {
1872
+ "self": {
1873
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EfficientProcessingOfApplications"
1874
+ },
1875
+ "concepttype": {
1876
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1877
+ }
1878
+ },
1879
+ "sectionFragment": {
1880
+ "sectionId": "EfficientProcessOfApplications"
1881
+ }
1882
+ }
1883
+ },
1884
+ {
1885
+ "concept": {
1886
+ "_id": "n35EnsureAccountabilityAndTraceability",
1887
+ "modelCategory": "Requirements",
1888
+ "label": "Ensure accountability and traceability",
1889
+ "_links": {
1890
+ "self": {
1891
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n35EnsureAccountabilityAndTraceability"
1892
+ },
1893
+ "concepttype": {
1894
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1895
+ }
1896
+ },
1897
+ "sectionFragment": {
1898
+ "sectionId": "EnsureAccountabilityAndTraceability",
1899
+ "text": "<p>Ensure accountability and traceability</p>",
1900
+ "startOffset": 0,
1901
+ "endOffset": 38
1902
+ }
1903
+ }
1904
+ },
1905
+ {
1906
+ "concept": {
1907
+ "_id": "OfferTrainingMaterialsForNewUsersAndReviewers",
1908
+ "modelCategory": "Requirements",
1909
+ "label": "Offer training materials for new users and reviewers",
1910
+ "_links": {
1911
+ "self": {
1912
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/OfferTrainingMaterialsForNewUsersAndReviewers"
1913
+ },
1914
+ "concepttype": {
1915
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1916
+ }
1917
+ },
1918
+ "sectionFragment": {
1919
+ "sectionId": "TrainingModules_Requirement"
1920
+ }
1921
+ }
1922
+ },
1923
+ {
1924
+ "concept": {
1925
+ "_id": "n53AutomaticallyCheckApplicationsForComplianceWithGuidelines",
1926
+ "modelCategory": "Requirements",
1927
+ "label": "Automatically check applications for compliance with guidelines",
1928
+ "_links": {
1929
+ "self": {
1930
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n53AutomaticallyCheckApplicationsForComplianceWithGuidelines"
1931
+ },
1932
+ "concepttype": {
1933
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1934
+ }
1935
+ },
1936
+ "sectionFragment": {
1937
+ "sectionId": "ComplianceChecks_Requirement",
1938
+ "text": "<p>Automatically check applications for compliance with guidelines.</p>",
1939
+ "startOffset": 13,
1940
+ "endOffset": 77
1941
+ }
1942
+ }
1943
+ },
1944
+ {
1945
+ "concept": {
1946
+ "_id": "n61AllowUsersToProvideFeedbackOnTheApplicationProcess",
1947
+ "modelCategory": "Requirements",
1948
+ "label": "Allow users to provide feedback on the application process",
1949
+ "_links": {
1950
+ "self": {
1951
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n61AllowUsersToProvideFeedbackOnTheApplicationProcess"
1952
+ },
1953
+ "concepttype": {
1954
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1955
+ }
1956
+ },
1957
+ "sectionFragment": {
1958
+ "sectionId": "FeedbackMechanism_Requirement",
1959
+ "text": "<p>Allow users to provide feedback on the application process.</p>",
1960
+ "startOffset": 13,
1961
+ "endOffset": 72
1962
+ }
1963
+ }
1964
+ },
1965
+ {
1966
+ "concept": {
1967
+ "_id": "n34EnhanceUserSatisfactionAndSystemUsability",
1968
+ "modelCategory": "Requirements",
1969
+ "label": "Enhance user satisfaction and system usability",
1970
+ "_links": {
1971
+ "self": {
1972
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n34EnhanceUserSatisfactionAndSystemUsability"
1973
+ },
1974
+ "concepttype": {
1975
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
1976
+ }
1977
+ },
1978
+ "sectionFragment": {
1979
+ "sectionId": "EnhanceUserSatisfactionAndSystemUsability",
1980
+ "text": "<p>Enhance user satisfaction and system usability</p>",
1981
+ "startOffset": 0,
1982
+ "endOffset": 46
1983
+ }
1984
+ }
1985
+ },
1986
+ {
1987
+ "concept": {
1988
+ "_id": "ApplicantsMustBeAbleToTrackTheStatusOfTheirSubmissions",
1989
+ "modelCategory": "Requirements",
1990
+ "label": "Applicants must be able to track the status of their submissions.",
1991
+ "_links": {
1992
+ "self": {
1993
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ApplicantsMustBeAbleToTrackTheStatusOfTheirSubmissions"
1994
+ },
1995
+ "concepttype": {
1996
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
1997
+ }
1998
+ },
1999
+ "sectionFragment": {
2000
+ "sectionId": "ApplicationTracking_Requirement"
2001
+ }
2002
+ }
2003
+ },
2004
+ {
2005
+ "concept": {
2006
+ "_id": "ReviewersShouldHaveAStructuredWorkflowForEvaluatingApplications",
2007
+ "modelCategory": "Requirements",
2008
+ "label": "Reviewers should have a structured workflow for evaluating applications.",
2009
+ "_links": {
2010
+ "self": {
2011
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/ReviewersShouldHaveAStructuredWorkflowForEvaluatingApplications"
2012
+ },
2013
+ "concepttype": {
2014
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2015
+ }
2016
+ },
2017
+ "sectionFragment": {
2018
+ "sectionId": "ReviewWorkflowManagement_Requirement"
2019
+ }
2020
+ }
2021
+ },
2022
+ {
2023
+ "concept": {
2024
+ "_id": "NoProperAuthenticationMechanismAvailableForApplicants",
2025
+ "modelCategory": "Requirements",
2026
+ "label": "No proper authentication mechanism available for applicants",
2027
+ "_links": {
2028
+ "self": {
2029
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/NoProperAuthenticationMechanismAvailableForApplicants"
2030
+ },
2031
+ "concepttype": {
2032
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
2033
+ }
2034
+ },
2035
+ "sectionFragment": {
2036
+ "sectionId": "NoProperAuthenticationMechanismAvailableApplicants"
2037
+ }
2038
+ }
2039
+ },
2040
+ {
2041
+ "concept": {
2042
+ "_id": "n38ContinuousImprovementOfTheSystem",
2043
+ "modelCategory": "Requirements",
2044
+ "label": "Continuous improvement of the system",
2045
+ "_links": {
2046
+ "self": {
2047
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n38ContinuousImprovementOfTheSystem"
2048
+ },
2049
+ "concepttype": {
2050
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
2051
+ }
2052
+ },
2053
+ "sectionFragment": {
2054
+ "sectionId": "ContinuousImprovementOfTheSystem",
2055
+ "text": "<p>Continuous improvement of the system</p>",
2056
+ "startOffset": 0,
2057
+ "endOffset": 36
2058
+ }
2059
+ }
2060
+ },
2061
+ {
2062
+ "concept": {
2063
+ "_id": "n31MaintainAdherenceToFundingRules",
2064
+ "modelCategory": "Requirements",
2065
+ "label": "Maintain adherence to funding rules",
2066
+ "_links": {
2067
+ "self": {
2068
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n31MaintainAdherenceToFundingRules"
2069
+ },
2070
+ "concepttype": {
2071
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
2072
+ }
2073
+ },
2074
+ "sectionFragment": {
2075
+ "sectionId": "MaintainAdherenceToFundingRules",
2076
+ "text": "<p>Maintain adherence to funding rules</p>",
2077
+ "startOffset": 0,
2078
+ "endOffset": 35
2079
+ }
2080
+ }
2081
+ },
2082
+ {
2083
+ "concept": {
2084
+ "_id": "n70DesignElementsAreTracedToTheOriginalSource",
2085
+ "modelCategory": "Requirements",
2086
+ "label": "Design elements are traced to the original source",
2087
+ "_links": {
2088
+ "self": {
2089
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n70DesignElementsAreTracedToTheOriginalSource"
2090
+ },
2091
+ "concepttype": {
2092
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2093
+ }
2094
+ },
2095
+ "sectionFragment": {
2096
+ "sectionId": "DesignElementsTracedToOriginalSource_Requirement",
2097
+ "text": "<p>Design elements are traced to the original source</p>",
2098
+ "startOffset": 13,
2099
+ "endOffset": 62
2100
+ }
2101
+ }
2102
+ },
2103
+ {
2104
+ "concept": {
2105
+ "_id": "n57ProvideSupportServicesForUsersEncounteringIssues",
2106
+ "modelCategory": "Requirements",
2107
+ "label": "Provide support services for users encountering issues",
2108
+ "_links": {
2109
+ "self": {
2110
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n57ProvideSupportServicesForUsersEncounteringIssues"
2111
+ },
2112
+ "concepttype": {
2113
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2114
+ }
2115
+ },
2116
+ "sectionFragment": {
2117
+ "sectionId": "UserSupportAndHelpdesk_Requirement",
2118
+ "text": "<p>Provide support services for users encountering issues.</p>",
2119
+ "startOffset": 13,
2120
+ "endOffset": 68
2121
+ }
2122
+ }
2123
+ },
2124
+ {
2125
+ "concept": {
2126
+ "_id": "n55ProtectSensitiveApplicantDataWithRobustSecurityMeasures",
2127
+ "modelCategory": "Requirements",
2128
+ "label": "Protect sensitive applicant data with robust security measures",
2129
+ "_links": {
2130
+ "self": {
2131
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n55ProtectSensitiveApplicantDataWithRobustSecurityMeasures"
2132
+ },
2133
+ "concepttype": {
2134
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2135
+ }
2136
+ },
2137
+ "sectionFragment": {
2138
+ "sectionId": "DataSecurityAndPrivacy_Requirement",
2139
+ "text": "<p>Protect sensitive applicant data with robust security measures.</p>",
2140
+ "startOffset": 13,
2141
+ "endOffset": 76
2142
+ }
2143
+ }
2144
+ },
2145
+ {
2146
+ "concept": {
2147
+ "_id": "n51ImplementScoringSystemsBasedOnPredefinedCriteria",
2148
+ "modelCategory": "Requirements",
2149
+ "label": "Implement scoring systems based on predefined criteria",
2150
+ "_links": {
2151
+ "self": {
2152
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n51ImplementScoringSystemsBasedOnPredefinedCriteria"
2153
+ },
2154
+ "concepttype": {
2155
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2156
+ }
2157
+ },
2158
+ "sectionFragment": {
2159
+ "sectionId": "ScoringAndEvaluationCriteria_Requirement",
2160
+ "text": "<p>Implement scoring systems based on predefined criteria.</p>",
2161
+ "startOffset": 12,
2162
+ "endOffset": 68
2163
+ }
2164
+ }
2165
+ },
2166
+ {
2167
+ "concept": {
2168
+ "_id": "n27ImproveTheQualityAndConsistencyOfDecisions",
2169
+ "modelCategory": "Requirements",
2170
+ "label": "Improve the quality and consistency of decisions",
2171
+ "_links": {
2172
+ "self": {
2173
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n27ImproveTheQualityAndConsistencyOfDecisions"
2174
+ },
2175
+ "concepttype": {
2176
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
2177
+ }
2178
+ },
2179
+ "sectionFragment": {
2180
+ "sectionId": "ImproveTheQualityAndConsistencyOfDecisions",
2181
+ "text": "<p>Improve the quality and consistency of decisions</p>",
2182
+ "startOffset": 0,
2183
+ "endOffset": 48
2184
+ }
2185
+ }
2186
+ },
2187
+ {
2188
+ "concept": {
2189
+ "_id": "n66TraceabilityToTheSourceOfTheRegulationsAndPolicies",
2190
+ "modelCategory": "Requirements",
2191
+ "label": "Traceability to the source of the regulations and policies",
2192
+ "_links": {
2193
+ "self": {
2194
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n66TraceabilityToTheSourceOfTheRegulationsAndPolicies"
2195
+ },
2196
+ "concepttype": {
2197
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2198
+ }
2199
+ },
2200
+ "sectionFragment": {
2201
+ "sectionId": "TraceabilityToTheSource_Requirement",
2202
+ "text": "<p>Traceability to the source of the regulations and policies</p>",
2203
+ "startOffset": 13,
2204
+ "endOffset": 71
2205
+ }
2206
+ }
2207
+ },
2208
+ {
2209
+ "concept": {
2210
+ "_id": "EnsureFinancialFeasibilityOfProjects",
2211
+ "modelCategory": "Requirements",
2212
+ "label": "Ensure financial feasibility of projects",
2213
+ "_links": {
2214
+ "self": {
2215
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrantRequirements/frames.beimodel.json/EnsureFinancialFeasibilityOfProjects"
2216
+ },
2217
+ "concepttype": {
2218
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/BusinessGoal"
2219
+ }
2220
+ },
2221
+ "sectionFragment": {
2222
+ "sectionId": "EnsureFinancialFeasibilityOfProjects"
2223
+ }
2224
+ }
2225
+ },
2226
+ {
2227
+ "concept": {
2228
+ "_id": "n46ApplicantsShouldBeAbleToUploadSupportingDocuments",
2229
+ "modelCategory": "Requirements",
2230
+ "label": "Applicants should be able to upload supporting documents.",
2231
+ "_links": {
2232
+ "self": {
2233
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n46ApplicantsShouldBeAbleToUploadSupportingDocuments"
2234
+ },
2235
+ "concepttype": {
2236
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ArchitecturalSignificantRequirement"
2237
+ }
2238
+ },
2239
+ "sectionFragment": {
2240
+ "sectionId": "DocumentUpload_Requirement",
2241
+ "text": "<p>Applicants should be able to upload supporting documents.</p>",
2242
+ "startOffset": 13,
2243
+ "endOffset": 70
2244
+ }
2245
+ }
2246
+ },
2247
+ {
2248
+ "concept": {
2249
+ "_id": "n72ThereIsALackOfExperiencedBackOfficeEmployees",
2250
+ "modelCategory": "Requirements",
2251
+ "label": "There is a lack of experienced back office employees",
2252
+ "_links": {
2253
+ "self": {
2254
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n72ThereIsALackOfExperiencedBackOfficeEmployees"
2255
+ },
2256
+ "concepttype": {
2257
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
2258
+ }
2259
+ },
2260
+ "sectionFragment": {
2261
+ "sectionId": "LackExperiencedBackOfficeEmployees",
2262
+ "text": "<p>There is a lack of experienced back office employees</p>",
2263
+ "startOffset": 0,
2264
+ "endOffset": 52
2265
+ }
2266
+ }
2267
+ },
2268
+ {
2269
+ "concept": {
2270
+ "_id": "n73ExperiencedEmployeesAreCurrentlyAlwaysNeededToFinalizeTheResu",
2271
+ "modelCategory": "Requirements",
2272
+ "label": "Experienced employees are currently always needed to finalize the result",
2273
+ "_links": {
2274
+ "self": {
2275
+ "href": "/concepts/bundle-com.beinformed.frames.ResearchGrant.HighLevelRequirements/frames.beimodel.json/n73ExperiencedEmployeesAreCurrentlyAlwaysNeededToFinalizeTheResu"
2276
+ },
2277
+ "concepttype": {
2278
+ "href": "/concepttypes/bundle-com.beinformed.research.grant.metamodels/High%20level%20requirements.bixml/ChallengingIssue"
2279
+ }
2280
+ },
2281
+ "sectionFragment": {
2282
+ "sectionId": "ExperiencedEmployeesNeededFinalizeResult",
2283
+ "text": "<p>Experienced employees are currently always needed to finalize the result</p>",
2284
+ "startOffset": 0,
2285
+ "endOffset": 72
2286
+ }
2287
+ }
2288
+ }
2289
+ ]
2290
+ }
2291
+ }
2292
+ }