-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathNDA_schema
59 lines (59 loc) · 1.6 KB
/
NDA_schema
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
{
"@context": "https://raw.githubusercontent.com/ReproNim/reproschema/main/releases/1.0.0/reproschema",
"id": "NDA_schema",
"category": "Activity",
"description": {
"en": "schema describing terms needed to generate NDA guid"
},
"schemaVersion": "1.0.0",
"version": "0.0.1",
"ui": {
"addProperties": [
{
"isAbout": "items/gender",
"isVis": true,
"variableName": "gender"
},
{
"isAbout": "items/first_name",
"isVis": true,
"variableName": "first_name"
},
{
"isAbout": "items/middle_name",
"isVis": true,
"variableName": "middle_name"
},
{
"isAbout": "items/last_name",
"isVis": true,
"variableName": "last_name"
},
{
"isAbout": "items/yearOfBirth",
"isVis": true,
"variableName": "yearOfBirth"
},
{
"isAbout": "items/city_of_birth",
"isVis": true,
"variableName": "city_of_birth"
}
],
"allow": [
"reproschema:AllowSkip"
],
"order": [
"items/gender",
"items/first_name",
"items/middle_name",
"items/last_name",
"items/yearOfBirth",
"items/city_of_birth"
],
"shuffle": false
},
"prefLabel": {
"en": "NDA guid"
}
}