@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
18 lines • 397 B
JSON
{
"type": "object",
"properties": {
"latitude": {
"type": "number",
"format": "double",
"description": "Geopoint latitude"
},
"longitude": {
"type": "number",
"format": "double",
"description": "Geopoint longitude"
}
},
"title": "GeoPoint",
"description": "Representation of a GeoPoint",
"$schema": "http://json-schema.org/schema#"
}