-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcommunity.json
141 lines (140 loc) · 3.41 KB
/
community.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"$id": "https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Community",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Community concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)",
"type": "object",
"properties": {
"_id": {
"title": "The unique id of the community, according to the rules",
"type": "string",
"pattern": "^OEBC[0-9]{3}$"
},
"_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/1.0/Community" ]
},
"_metadata": {
"$ref": "_shared#/definitions/Metadata"
},
"name": {
"title": "Short community name",
"minLength": 1,
"type": "string"
},
"acronym": {
"title": "Unique community acronym",
"minLength": 1,
"type": "string"
},
"status": {
"title": "_id(s) of the current community status(es)",
"type": "string",
"enum": [ "abandoned","active","archived","incubating","unknown" ]
},
"description": {
"title": "Long community name or description",
"type": "string"
},
"keywords": {
"title": "A list of keywords defining the community. They can be either strings or URIs of ontology terms",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1
},
"links": {
"title": "Optional links related to the community",
"type": "array",
"minItems": 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": ["LinkedInGroup","MainSite","DataSite","other"]
},
"comment": {
"title": "Internal comment about this URI (useful when the type of URI is other)",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"uri",
"label"
]
}
},
"references": {
"title": "The community reference id(s) (if any)",
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "Reference",
"members": [ "." ]
}
],
"minLength": 1
}
},
"community_contact_ids": {
"title": "_id of the contacts of the responsible researchers in charge of the community coordination",
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "Contact",
"members": [ "." ]
}
],
"minLength": 1
}
},
"reference_tools": {
"title": "The tools which are considered as reference/baseline on this community",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"tool_id": {
"title": "The tool id",
"type": "string",
"foreign_keys": [
{
"schema_id": "Tool",
"members": [ "." ]
}
],
"minLength": 1
},
"description": {
"title": "An optional, brief description about why this tool is a baseline or reference in this community",
"type": "string"
}
},
"additionalProperties": false,
"required": [ "tool_id" ]
}
}
},
"additionalProperties": false,
"required": ["_id","_schema","name","acronym","status","community_contact_ids"],
"primary_key": ["_id"],
"dependencies": {}
}