Skip to content

Instantly share code, notes, and snippets.

@c3s4r
Last active June 26, 2020 15:38
Show Gist options
  • Save c3s4r/99a600194941e5c18d4c4ec8a156fb75 to your computer and use it in GitHub Desktop.
Save c3s4r/99a600194941e5c18d4c4ec8a156fb75 to your computer and use it in GitHub Desktop.
{
"$id": "https://example.com/geographical-location.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Longitude and Latitude",
"description": "A geographical coordinate on a planet (most commonly Earth).",
"required": [ "latitude", "longitude" ],
"type": "object",
"properties": {
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment