-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathelement.json
More file actions
28 lines (28 loc) · 869 Bytes
/
element.json
File metadata and controls
28 lines (28 loc) · 869 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": "element",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "element schema",
"type": "object",
"properties": {
"symbol": {
"$ref": "./definitions/chemical_elements.json#periodic_table"
},
"properties": {
"type": "array",
"description": "list of elemental properties",
"items": {
"anyOf": [
{
"$ref": "properties_directory/elemental/atomic_radius.json"
},
{
"$ref": "properties_directory/elemental/electronegativity.json"
},
{
"$ref": "properties_directory/elemental/ionization_potential.json"
}
]
}
}
}
}