-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacilities.json
58 lines (58 loc) · 1.12 KB
/
Facilities.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
{
"identifier": "test/9d0a833e883c67f65595",
"name": "Facilities",
"description": "Facilities",
"schema": {
"type": "object",
"title": "Facilities",
"required": [
"name",
"description",
"instituteId"
],
"properties": {
"id": {
"type": "string",
"cordra": {
"type": {
"autoGeneratedField": "handle"
}
}
},
"name": {
"type": "string",
"maxLength": 128,
"title": "Name",
"cordra": {
"preview": {
"showInPreview": true,
"isPrimary": true
}
}
},
"instituteId": {
"type": "string",
"cordra": {
"type": {
"handleReference": {
"types": [
"Institute"
]
}
}
}
},
"description": {
"type": "string",
"format": "textarea",
"title": "Description",
"cordra": {
"preview": {
"showInPreview": true,
"excludeTitle": true
}
}
}
}
}
}