@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
29 lines • 780 B
JSON
{
"type": "object",
"properties": {
"orders": {
"type": "array",
"description": "List of order history items",
"items": {
"$ref": "_definitions.json#/definitions/OrderHistory",
"originalRef": "OrderHistory"
}
},
"pagination": {
"description": "Pagination items",
"$ref": "_definitions.json#/definitions/deprecatedPagination",
"originalRef": "deprecatedPagination"
},
"sorts": {
"type": "array",
"description": "List of sorts",
"items": {
"$ref": "_definitions.json#/definitions/Sort",
"originalRef": "Sort"
}
}
},
"title": "OrderHistoryList",
"description": "Representation of an Order History List",
"$schema": "http://json-schema.org/schema#"
}