Structured Data for Plane-Wave Pseudopotential Method
Below, the user can find an example JSON structured representation for the Plane-wave Pseudopotential Method.
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 | {
"$id": "methods-directory/legacy/pseudopotential",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "legacy method pseudopotential",
"type": "object",
"allOf": [
{
"$ref": "../../method.json"
}
],
"properties": {
"type": {
"enum": [
"pseudopotential"
]
},
"subtype": {
"enum": [
"paw",
"nc",
"us",
"any"
]
}
}
}
|
| {
"type": "pseudopotential",
"subtype": "us"
}
|