Source code

Revision control

Copy as Markdown

Other Tools

{
"definitions": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"value": {},
"xaxis": {
"type": "number"
}
},
"required": [
"file",
"value",
"xaxis"
]
}
},
"dict": {
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/data"
},
"name": {
"type": "string"
},
"subtest": {
"type": "string"
}
},
"required": [
"data",
"name",
"subtest"
]
}
},
"oneOf": [
{
"$ref": "#/definitions/dict"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/dict"
}
}
]
}