-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmethod.json
More file actions
28 lines (28 loc) · 823 Bytes
/
method.json
File metadata and controls
28 lines (28 loc) · 823 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
28
{
"$id": "method",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "base method",
"type": "object",
"properties": {
"type": {
"description": "general type of this method, eg. `pseudopotential`",
"type": "string"
},
"subtype": {
"description": "general subtype of this method, eg. `ultra-soft`",
"type": "string"
},
"precision": {
"description": "Object showing the actual possible precision based on theory and implementation",
"type": "object"
},
"data": {
"description": "additional data specific to method, eg. array of pseudopotentials",
"type": "object"
}
},
"required": [
"type",
"subtype"
]
}