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...

dart_properties_v3_7.json

Dart properties

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Dart Properties",
  "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": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "number",
          "enum": [
            0,
            1
          ]
        }
      ]
    },
    "lockPoints": {
      "type": "string",
      "enum": [
        "none",
        "left",
        "right"
      ]
    },
    "roundDart": {
      "type": "string",
      "enum": [
        "none",
        "symmetrical",
        "directional"
      ]
    },
    "fullDartAllowance": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "number",
          "enum": [
            0,
            1
          ]
        }
      ]
    }
  },
  "additionalProperties": false
}

Did this answer your question?