UNPKG

@rapharacing/schemas

Version:

OpenAPI to JSON Schema to be used with middy for CC response validation

24 lines 645 B
{ "type": "object", "required": [ "orderEntryNumber", "quantity" ], "properties": { "orderEntryNumber": { "type": "integer", "format": "int32", "example": 1, "description": "Order entry number of the returned product" }, "quantity": { "type": "integer", "format": "int64", "example": 5, "description": "Quantity of the product which belongs to the order entry and is requested to be returned" } }, "title": "ReturnRequestEntryInput", "description": "Representation of a return request entry input for an order", "$schema": "http://json-schema.org/schema#" }