Skip to main content

edge_properties_v3_16.json

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

Updated over 3 weeks ago

edge_properties.json

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