dart_properties.json
Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Dart properties",
"type": "object",
"properties": {
"shapeId": {
"type": "number",
"readOnly":true
},
"foldEdgeId": {
"type": "number",
"readOnly":true
},
"nonFoldEdgeId": {
"type": "number",
"readOnly":true
},
"width": {
"type": "number"
},
"legLength": {
"type": "number"
},
"foldDirectionClockwise": {
"type": "boolean"
},
"lockPoints": {
"type": "string",
"enum": [
"none",
"left",
"right"
]
},
"roundDart": {
"type": "string",
"enum": [
"none",
"symmetrical",
"directional"
]
},
"fullDartAllowance": {
"type": "boolean"
}
}
}