-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcommunity.json
More file actions
92 lines (92 loc) · 2.24 KB
/
community.json
File metadata and controls
92 lines (92 loc) · 2.24 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"id": "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/Community",
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "Community concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)",
"type": "object",
"properties": {
"_id": {
"title": "The unique id of the community. It should be something unique of the community (for instance, an acronym)",
"type": "string",
"minLength": 1
},
"_schema": {
"title": "The JSON schema absolute URI. It must match the value of 'id' in the JSON schema",
"type": "string",
"format": "uri",
"enum": [ "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/Community" ]
},
"name": {
"title": "Short community name",
"minLength": 1,
"type": "string"
},
"acronym": {
"title": "Unique community acronym",
"minLength": 1,
"type": "string"
},
"status_id": {
"title": "_id(s) of the current community status(es)",
"type": "array",
"minLength": 1,
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "CommunityStatus",
"members": [ "." ]
}
],
"minLength": 1
}
},
"description": {
"title": "Long community name or description",
"type": "string"
},
"links": {
"title": "Optional links related to the community",
"type": "array",
"minLength": 1,
"items": {
"type": "object",
"properties": {
"uri": {
"title": "The URI of the link related to the community",
"type": "string",
"format": "uri"
},
"label": {
"title": "The type of URI",
"type": "string",
"enum": ["PublicationDOI","LinkedInGroup","MainSite","DataSite"]
}
},
"additionalProperties": false,
"required": [
"uri",
"label"
]
}
},
"community_contacts": {
"title": "_id of the contacts of the responsible researchers in charge of the community coordination",
"type": "array",
"minLength": 1,
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "Contact",
"members": [ "." ]
}
],
"minLength": 1
}
}
},
"additionalProperties": true,
"required": ["_id","_schema","name","acronym","status_id","community_contacts"],
"primary_key": ["_id"],
"dependencies": {}
}