Skip to main content

edge_properties_v3_22.json

edge_properties_v3_22.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"
    },
    "stitch_construction_width": {
      "type": "number"
    },
    "stitch_construction_wash": {
      "type": "number"
    },
    "is_puckering": {
      "type": "boolean",
      "default": false
    },
    "puckering_option": {
      "type": "string",
      "default": "Denim"
    },
    "puckering_depth": {
      "type": "number"
    },
    "puckering_width": {
      "type": "number"
    },
    "wash_effect": {
      "type": "boolean",
      "default": false
    },
    "puckering_wash": {
      "type": "number"
    },
    "use_displacement": {
      "type": "boolean",
      "default": true
    },
    "use_force_multiplier": {
      "type": "boolean",
      "default": true
    },
    "force_multiplier": {
      "type": "object",
      "properties": {
        "amount": {
          "type": "number",
          "minimum": 1,
          "maximum": 100
        },
        "depth": {
          "type": "number",
          "minimum": 0
        }
      }
    },
    "use_shrink": {
      "type": "boolean",
      "default": true
    },
    "shrink": {
      "type": "object",
      "properties": {
        "amount": {
          "type": "number",
          "minimum": -100,
          "maximum": 100
        },
        "depth": {
          "type": "number",
          "minimum": 0
        }
      }
    },
    "use_puffy": {
      "type": "boolean",
      "default": true
    },
    "puffy": {
      "type": "object",
      "properties": {
        "finish_effect": {
          "type": "string",
          "default": "rounded",
          "enum": [
            "rounded",
            "sharp"
          ]
        },
        "baffle_wall_height": {
          "type": "number",
          "minimum": 0
        }
      }
    },
    "refined_grid": {
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "default": false
        },
        "divisor": {
          "type": "number",
          "minimum": 2,
          "maximum": 5
        },
        "depth": {
          "type": "number",
          "minimum": 0.1,
          "maximum": 50
        }
      }
    }
  }
}

Did this answer your question?