sample-process-models/users/sample/SimpleReceive.json

37 lines
765 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"orderId": {
"type": "string"
},
"customerName": {
"type": "string"
},
"products": {
"type": "array",
"items": {
"type": "object",
"properties": {
"productId": {
"type": "string"
},
"productName": {
"type": "string"
},
"quantity": {
"type": "integer",
"minimum": 1
}
},
"required": ["productId", "productName", "quantity"]
}
},
"shippingAddress": {
"type": "object",
"properties": {
"street": {
"type": "string"
},
"city": {