Skip to main content

edge_properties_v1_0.json

edge_properties.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { ...

edge_properties_v1_0.json

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "default": ""
    },
    "seam_allowance": {
      "type": "number"
    },
    "finish_effect": {
      "type": "string",
      "default": "none",
      "enum": [
        "none",
        "flat",
        "rounded",
        "double_rounded"
      ]
    },
    "stitch_construction_type": {
      "type": "string",
      "default": "flat",
      "enum": [
        "flat",
        "open",
        "directional_top",
        "directional_bottom"
      ]
    },
    "stitch_construction_depth": {
      "type": "number"
    },
    "is_puckering": {
      "type": "boolean",
      "default": false
    },
    "puckering_depth": {
      "type": "number"
    },
    "puckering_width": {
      "type": "number"
    }
  }
}

Did this answer your question?