-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtoolAccessType.json
More file actions
27 lines (27 loc) · 905 Bytes
/
toolAccessType.json
File metadata and controls
27 lines (27 loc) · 905 Bytes
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
{
"id": "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/ToolAccessType",
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "Tool Access Type concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)",
"type": "object",
"properties": {
"_id": {
"title": "The unique id of the tool access type. It should be something meaningful, like a short word or 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/ToolAccessType" ]
},
"description": {
"title": "Description of this tool access type",
"type": "string"
}
},
"additionalProperties": true,
"required": ["_id","_schema"],
"primary_key": ["_id"],
"dependencies": {}
}