@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
18 lines • 497 B
JSON
{
"type": "object",
"properties": {
"maxPrice": {
"description": "Maximum value of the Price Range",
"$ref": "_definitions.json#/definitions/Price",
"originalRef": "Price"
},
"minPrice": {
"description": "Minium value of the Price Range",
"$ref": "_definitions.json#/definitions/Price",
"originalRef": "Price"
}
},
"title": "PriceRange",
"description": "Representation of a Price Range",
"$schema": "http://json-schema.org/schema#"
}