-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
61 lines (61 loc) · 1.94 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Search and Populate Data From Another Project",
"description": "Search another project for data to populate data into the current form. This module embeds REDCap's Search Query functionality into a data entry page to allow searches of _another_ project to populate fields in the current data entry page",
"namespace": "STPipe\\ExternalModule",
"framework-version": 4,
"redcap-version-min": "9.7.8",
"permissions": [
"redcap_data_entry_form_top",
"redcap_every_page_top"
],
"authors": [
{
"name": "Kyle Chesney",
"email": "[email protected]",
"institution": "University of Florida - CTSI"
},
{
"name": "Philip Chase",
"email": "[email protected]",
"institution": "University of Florida - CTSI"
},
{
"name": "Taryn Stoffs",
"email": "[email protected]",
"institution": "University of Florida - CTSI"
}
],
"project-settings": [
{
"key": "target_pid",
"name": "Project you wish to search",
"type": "project-id",
"autocomplete": true
},
{
"key": "codebook_shortcuts",
"name": "Codebook shortcuts",
"type": "descriptive"
},
{
"key": "enabled_forms",
"name": "Enabled Forms",
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"key": "show_on_form",
"name": "Show in this form",
"type": "form-list",
"autocomplete": true
},
{
"key": "mapping",
"name": "JSON mapping source:target",
"type": "textarea",
"autocomplete": true
}
]
}
]
}