{
"type": "object",
"title": "Product",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"price": {
"type": "number",
"minimum": 0
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"inventory": {
"type": "object",
"properties": {
"quantity": {
"type": "integer",
"minimum": 0
},
"warehouse": {
"type": "string"
}
}
}
},
"examples": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Wireless Mouse",
"price": 29.99,
"tags": ["electronics", "accessories", "wireless"],
"inventory": {
"quantity": 150,
"warehouse": "US-WEST-1"
}
},
{
"id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"name": "USB-C Cable",
"price": 12.99,
"tags": ["cables", "usb-c"],
"inventory": {
"quantity": 500,
"warehouse": "US-EAST-1"
}
}
]
}