{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeoCoordinates",
"title": "GeoCoordinates",
"properties": {
"latitude": {
"type": "number",
"format": "float",
"description": "The latitude of the point on earth in decimal form."
},
"longitude": {
"type": "number",
"format": "float",
"description": "The longitude of the point on earth in decimal form."
}
}
}