@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
68 lines • 1.8 kB
JSON
{
"type": "object",
"properties": {
"boundEastLongitude": {
"type": "number",
"format": "double",
"description": "Bound to east longitude"
},
"boundNorthLatitude": {
"type": "number",
"format": "double",
"description": "Bound to north latitude"
},
"boundSouthLatitude": {
"type": "number",
"format": "double",
"description": "Bound to south latitude"
},
"boundWestLongitude": {
"type": "number",
"format": "double",
"description": "Bound to west longitude"
},
"locationText": {
"type": "string",
"description": "Location text"
},
"pagination": {
"description": "Pagination",
"$ref": "_definitions.json#/definitions/deprecatedPagination",
"originalRef": "deprecatedPagination"
},
"product": {
"description": "Product",
"$ref": "_definitions.json#/definitions/Product",
"originalRef": "Product"
},
"sorts": {
"type": "array",
"description": "List of sorts",
"items": {
"$ref": "_definitions.json#/definitions/Sort",
"originalRef": "Sort"
}
},
"sourceLatitude": {
"type": "number",
"format": "double",
"description": "Source latitude"
},
"sourceLongitude": {
"type": "number",
"format": "double",
"description": "Source longitude"
},
"stores": {
"type": "array",
"description": "List of stores",
"items": {
"$ref": "_definitions.json#/definitions/PointOfServiceStock",
"originalRef": "PointOfServiceStock"
}
}
},
"title": "StoreFinderStockSearchPage",
"description": "Representation of a Store Finder Stock Search Page",
"$schema": "http://json-schema.org/schema#"
}