@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
34 lines • 801 B
JSON
{
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Code of Order History"
},
"guid": {
"type": "string",
"description": "Guest user identifier"
},
"placed": {
"type": "string",
"format": "date-time",
"description": "Date of placing order"
},
"status": {
"type": "string",
"description": "Status of Order History"
},
"statusDisplay": {
"type": "string",
"description": "Status display"
},
"total": {
"description": "Total price",
"$ref": "_definitions.json#/definitions/Price",
"originalRef": "Price"
}
},
"title": "OrderHistory",
"description": "Representation of an Order History",
"$schema": "http://json-schema.org/schema#"
}