Skip to content

Commit 268288e

Browse files
author
Schuyler Erle
committed
Add bbox schema
1 parent bea2205 commit 268288e

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"lexicon": 1,
3+
"id": "community.lexicon.location.bbox",
4+
"defs": {
5+
"main": {
6+
"type": "object",
7+
"description": "A bounding box representing a rectangular geographic area defined by its corner coordinates.",
8+
"required": [
9+
"north",
10+
"west",
11+
"south",
12+
"east"
13+
],
14+
"properties": {
15+
"north": {
16+
"type": "string",
17+
"description": "The northern latitude boundary of the bounding box."
18+
},
19+
"west": {
20+
"type": "string",
21+
"description": "The western longitude boundary of the bounding box."
22+
},
23+
"south": {
24+
"type": "string",
25+
"description": "The southern latitude boundary of the bounding box."
26+
},
27+
"east": {
28+
"type": "string",
29+
"description": "The eastern longitude boundary of the bounding box."
30+
}
31+
}
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)