Contains information about clothing items stored in the Coordinista app. The user must upload clothing items to the service to create outfits
. The outfits
property of the clothing
resource is what tells the service which clothing items make up an outfit.
If you add a clothing item to the service, that item is not added to an outfit automatically. You must add the clothing item to the applicable outfits. For details, refer to Add a new clothing item.
{server_url}/clothing
The {server_url}
for the service is http://localhost:3000
.
A string that uniquely identifies the clothing item.
A string that describes the clothing item type.
Accepted values for the type
property:
top
bottom
footwear
accessory
dress
A string that describes the clothing item’s color. The service uses the color
property to coordinate outfits
.
A string that provides a long description of the clothing item.
An array of strings that display the list of outfits that the clothing item fits into. Each clothing item can belong to many outfits.
A number that represens the clothing item’s unique record ID.
{
"name": "sneakers",
"type": "footwear",
"color": "white",
"description": "Trusty pair of shoes",
"outfits": ["picnic outfit"],
"id": 11
}