@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
24 lines • 792 B
JSON
{
"type": "object",
"properties": {
"expectedQuantity": {
"type": "integer",
"format": "int64",
"example": 5,
"description": "Quantity which is expected to be returned for this return request entry"
},
"orderEntry": {
"description": "Order entry related to the return request entry",
"$ref": "_definitions.json#/definitions/OrderEntry",
"originalRef": "OrderEntry"
},
"refundAmount": {
"description": "Refund amount of the entry",
"$ref": "_definitions.json#/definitions/Price",
"originalRef": "Price"
}
},
"title": "ReturnRequestEntry",
"description": "Representation of a return request entry which contains information about the returned product",
"$schema": "http://json-schema.org/schema#"
}