@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
63 lines • 1.63 kB
JSON
{
"type": "object",
"properties": {
"boundEastLongitude": {
"type": "number",
"format": "double",
"description": "Bound east longitude"
},
"boundNorthLatitude": {
"type": "number",
"format": "double",
"description": "Bound north latitude"
},
"boundSouthLatitude": {
"type": "number",
"format": "double",
"description": "Bound south latitude"
},
"boundWestLongitude": {
"type": "number",
"format": "double",
"description": "Bound west longitude"
},
"locationText": {
"type": "string",
"description": "Location text"
},
"pagination": {
"description": "Pagination",
"$ref": "_definitions.json#/definitions/deprecatedPagination",
"originalRef": "deprecatedPagination"
},
"sorts": {
"type": "array",
"description": "List of sortings",
"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/PointOfService",
"originalRef": "PointOfService"
}
}
},
"title": "StoreFinderSearchPage",
"description": "Representation of a Store finder search page",
"$schema": "http://json-schema.org/schema#"
}