Skip to content

Commit 838ecc1

Browse files
committed
Merge branch 'master' of github.com:apiwise/postcodeapi
2 parents 4339a99 + c201b27 commit 838ecc1

File tree

1 file changed

+63
-1
lines changed

1 file changed

+63
-1
lines changed

swagger.json

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,38 @@
1212
"produces": [
1313
"application/json"
1414
],
15+
"tags": [
16+
{
17+
"name": "address",
18+
"description": "Adres calls"
19+
},
20+
{
21+
"name": "postcode",
22+
"description": "Postcode calls"
23+
},
24+
{
25+
"name": "postcodeArea",
26+
"description": "Postcodegebied calls"
27+
},
28+
{
29+
"name": "town",
30+
"description": "Woonplaats calls"
31+
},
32+
{
33+
"name": "municipality",
34+
"description": "Gemeente calls"
35+
},
36+
{
37+
"name": "province",
38+
"description": "Provincie calls"
39+
}
40+
],
1541
"paths": {
1642
"/municipalities": {
1743
"get": {
44+
"tags": [
45+
"municipality"
46+
],
1847
"summary": "Alle gemeentes",
1948
"description": "Alle gemeentes in Nederland",
2049
"responses": {
@@ -61,6 +90,9 @@
6190
},
6291
"/municipalities/{municipalityId}": {
6392
"get": {
93+
"tags": [
94+
"municipality"
95+
],
6496
"summary": "Enkele gemeente",
6597
"description": "Gemeente met Geo informatie en bijbehorende woonplaatsen.",
6698
"parameters": [
@@ -145,6 +177,9 @@
145177
},
146178
"/towns": {
147179
"get": {
180+
"tags": [
181+
"town"
182+
],
148183
"summary": "Alle woonplaatsen",
149184
"description": "Alle woonplaatsen in Nederland",
150185
"responses": {
@@ -191,6 +226,9 @@
191226
},
192227
"/towns/{townId}": {
193228
"get": {
229+
"tags": [
230+
"town"
231+
],
194232
"summary": "Enkele woonplaats",
195233
"description": "Woonplaats met Geo informatie en bijbehorende postcodegebieden.",
196234
"parameters": [
@@ -288,6 +326,9 @@
288326
},
289327
"/provinces": {
290328
"get": {
329+
"tags": [
330+
"province"
331+
],
291332
"summary": "Alle provincies",
292333
"description": "Alle provincies in Nederland",
293334
"responses": {
@@ -334,6 +375,9 @@
334375
},
335376
"/provinces/{provinceId}": {
336377
"get": {
378+
"tags": [
379+
"province"
380+
],
337381
"summary": "Enkele provincie",
338382
"description": "Provincie met Geo informatie en bijbehorende gemeenten.",
339383
"parameters": [
@@ -391,6 +435,9 @@
391435
},
392436
"/addresses": {
393437
"get": {
438+
"tags": [
439+
"address"
440+
],
394441
"summary": "Alle adressen",
395442
"description": "Alle adressen in Nederland, gepagineerd per 100 records",
396443
"parameters": [
@@ -442,7 +489,7 @@
442489
"in": "query",
443490
"type": "string",
444491
"required": false,
445-
"description": "Komma gescheiden lat,lon (GPS) coördinaten om te sorteren op afstand (51.8463989,5.8031914)"
492+
"description": "Komma gescheiden lat, lon (GPS) coördinaten om te sorteren op afstand (51.8463989,5.8031914)"
446493
}
447494
],
448495
"responses": {
@@ -512,6 +559,9 @@
512559
},
513560
"/addresses/{addressId}": {
514561
"get": {
562+
"tags": [
563+
"address"
564+
],
515565
"summary": "Enkel adres",
516566
"parameters": [
517567
{
@@ -602,6 +652,9 @@
602652
},
603653
"/postcodes": {
604654
"get": {
655+
"tags": [
656+
"postcode"
657+
],
605658
"summary": "Alle postcodes",
606659
"description": "Alle postcodes in Nederland, gepagineerd per 100 records",
607660
"parameters": [
@@ -670,6 +723,9 @@
670723
},
671724
"/postcodes/{postcode}": {
672725
"get": {
726+
"tags": [
727+
"postcode"
728+
],
673729
"summary": "Enkele postcode",
674730
"parameters": [
675731
{
@@ -798,6 +854,9 @@
798854
},
799855
"/postcode-areas": {
800856
"get": {
857+
"tags": [
858+
"postcode-area"
859+
],
801860
"summary": "Alle postcodegebieden",
802861
"description": "Alle postcodegebieden in Nederland, gepagineerd per 100 records",
803862
"parameters": [
@@ -864,6 +923,9 @@
864923
},
865924
"/postcode-areas/{postcodeArea}": {
866925
"get": {
926+
"tags": [
927+
"postcode-area"
928+
],
867929
"summary": "Enkel postcodegebied",
868930
"parameters": [
869931
{

0 commit comments

Comments
 (0)