Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Create Outfit",
"properties": {
"name": {
"type": "string",
"default": ""
},
"garments": {
"type": "array",
"items": {
"type": "object",
"properties" : {
"path": {
"type": "string",
"default": ""
},
"id": {
"type": "string",
"default": ""
},
"selected_colorway_id": {
"type": "number"
},
"selected_snapshot_id": {
"type": "string",
"default": ""
},
"selected_size": {
"type": "string",
"default": ""
}
},
"required": [
"path", "id"
]
}
}
},
"required": [
"name", "garments"
]
}