@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
22 lines • 573 B
JSON
{
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date-time",
"description": "Date of future stock"
},
"formattedDate": {
"type": "string",
"description": "Date of future stock expressed in text value"
},
"stock": {
"description": "Stock information of future stock",
"$ref": "_definitions.json#/definitions/Stock",
"originalRef": "Stock"
}
},
"title": "FutureStock",
"description": "Representation of a Future Stock",
"$schema": "http://json-schema.org/schema#"
}