What You Show
Is What You Give
(It's what they'll expect)
"Did we decide on 17:00 or 17.00?"
"Thought we said 'open' or 'closed'?"
{
"name": "Fancy t-shirt",
"info": {
"color": "red",
"size": "XXL"
},
"price": 199
}
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"info": {
"type": "object",
"properties": {
"color": { "type": "string" },
"size": { "type": "string" },
}
},
"price": { "type": "integer" }
}
}