schema.outcome-schema.json Maven / Gradle / Ivy
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Order",
"type": "object",
"properties": {
"orderId": {
"type": "string"
},
"orderItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"itemId": {
"type": "string"
},
"quantity": {
"type": "integer"
}
}
}
},
"customer": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"phone": {
"type": "string"
},
"zip": {
"type": "string"
}
}
}
}
}