Skip to content

Commit

Permalink
update: fix refs
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed May 22, 2024
1 parent ec3d271 commit 329cb95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions schema/material/interface.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "object",
"allOf": [
{
"$ref": "material"
"$ref": "../material.json"
}
],
"properties": {
Expand All @@ -20,10 +20,10 @@
"type": "object",
"properties": {
"slab_config1": {
"$ref": "slab"
"$ref": "slab.json"
},
"slab_config2": {
"$ref": "slab"
"$ref": "slab.json"
}
}
},
Expand Down Expand Up @@ -57,7 +57,7 @@
},
"termination_pair": {
"type": "string",
"description": "Pair of terminations at the interface."
"description": "Pair of terminations at the interface. Written as a tuple of two strings, e.g `('C_P6/mmm_2', 'Ni_R-3m_1')`"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schema/material/slab.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "object",
"allOf": [
{
"$ref": "material"
"$ref": "../material.json"
}
],
"properties": {
Expand All @@ -17,7 +17,7 @@
"enum": ["slab"]
},
"source": {
"$ref": "material"
"$ref": "../material.json"
},
"slab_parameters": {
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions schema/material/supercell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "object",
"allOf": [
{
"$ref": "material"
"$ref": "../material.json"
}
],
"properties": {
Expand All @@ -17,7 +17,7 @@
"enum": ["supercell"]
},
"source": {
"$ref": "material"
"$ref": "../material.json"
},
"supercell_parameters": {
"type": "object",
Expand Down

0 comments on commit 329cb95

Please sign in to comment.