-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeople.json
51 lines (51 loc) · 999 Bytes
/
People.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
{
"identifier": "test/b37554f695b15005fd23",
"name": "People",
"description": "People who works at the institutes",
"schema": {
"type": "object",
"title": "people",
"required": [
"name",
"affiliation",
"orcid"
],
"properties": {
"id": {
"type": "string",
"cordra": {
"type": {
"autoGeneratedField": "handle"
}
}
},
"name": {
"type": "string",
"cordra": {
"preview": {
"showInPreview": true,
"excludeTitle": true,
"isPrimary": true
}
}
},
"affiliation": {
"title": "Affliation",
"type": "string",
"cordra": {
"type": {
"handleReference": {
"types": [
"CETAFInst"
]
}
}
}
},
"orcid": {
"title": "ORCID",
"type": "string"
}
}
}
}