Skip to main content

dart_properties_v3_7.json

dart_properties.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Dart properties", "type": "obje...

Updated over 3 weeks ago

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"
		}
	}
}
Did this answer your question?