Update docimentation

This commit is contained in:
rui hildt 2020-02-09 20:47:45 +01:00
parent b659af9cb4
commit f9c5eeecf5
1 changed files with 18 additions and 14 deletions

View File

@ -18,7 +18,7 @@ ___
**`GET /api/countries/:country_id`** **`GET /api/countries/:country_id`**
##### Response ##### Response
A json object with a list of cities in the selected country `name` and `id` and `country_id`. An array of json objects with a list of cities in the selected country with `name`, `id` and `country_id`.
``` ```
[ [
@ -51,14 +51,16 @@ A json object with a list of cities in the selected country `name` and `id` and
**`GET /api/cities`** **`GET /api/cities`**
##### Response ##### Response
A json object with `id`, `name` and `country_id`. An array of json objects with `id`, `name` and `country_id`.
``` ```
{ [
"id": 1, {
"name": 'bruges', "id": 1,
"country_id": 1 "name": 'bruges',
} "country_id": 1
}
]
``` ```
### ROADS **`roads`** ### ROADS **`roads`**
@ -73,15 +75,17 @@ A json object with `id`, `name` and `country_id`.
**`GET /api/roads`** **`GET /api/roads`**
##### Response ##### Response
A json object with `id`, `start_city_id`, 'end_city_id` and `distance`. A array of json objects with `id`, `start_city_id`, 'end_city_id` and `distance`.
``` ```
{ [
"id": 1, {
"start_city_id": 1, "id": 1,
"end_city_id": 3, "start_city_id": 1,
"distance": 50 "end_city_id": 3,
} "distance": 50
}
]
``` ```
### Shortest Path **`cities`** ### Shortest Path **`cities`**