@vscubing/cubing
Version:
A collection of JavaScript cubing libraries.
43 lines (42 loc) • 901 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"numbers": {
"type": "array",
"items": {
"type": "number"
}
},
"AlgString": {
"type": "string"
},
"KPatternOrbitData": {
"type": "object",
"required": ["pieces", "orientation"],
"additionalProperties": false,
"properties": {
"pieces": {
"$ref": "#/definitions/numbers"
},
"orientation": {
"$ref": "#/definitions/numbers"
},
"orientationMod": {
"$ref": "#/definitions/numbers"
}
}
},
"KPatternData": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/KPatternOrbitData"
},
"properties": {
"$schema": {
"type": "string"
}
}
}
},
"$ref": "#/definitions/KPatternData"
}