Shape
Last updated
[
{
"name": "last_name",
"type": "string",
"description": "The last name of the recipient ",
"isArray": false
},
"name": "total",
"type": "number",
"description": "Total amount to pay",
"isArray": false
}
][
{
"name": "authors",
"type": "string",
"description": "All authors that are part of this paper",
"isArray": true
}
][
{
"name": "part",
"type": "object",
"description": "A mechanical part to be shipped.",
"isArray": false,
"elements": [
{
"name": "part_id",
"type": "number",
"description": "The id of that part",
"isArray": false
},
{
"name": "shipping_price",
"type": "string",
"description": "Shipping price of that part",
"isArray": false
}
]
}
]"shape": [
{
"name": "part",
"type": "object",
"description": "Mechanical parts to be shipped",
"isArray": true,
"elements": [
{
"name": "part_id",
"type": "number",
"description": "The id of that part",
"isArray": false
},
{
"name": "sizes",
"type": "string",
"description": "Different sizes that this part can be produced",
"isArray": true
}
]
},
{
"name": "date",
"type": "string",
"description": "Current date in the format MM-DD-YYYY",
"isArray": false
}
]