Update docimentation
This commit is contained in:
parent
b659af9cb4
commit
f9c5eeecf5
18
README.md
18
README.md
@ -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,
|
"id": 1,
|
||||||
"name": 'bruges',
|
"name": 'bruges',
|
||||||
"country_id": 1
|
"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,
|
"id": 1,
|
||||||
"start_city_id": 1,
|
"start_city_id": 1,
|
||||||
"end_city_id": 3,
|
"end_city_id": 3,
|
||||||
"distance": 50
|
"distance": 50
|
||||||
}
|
}
|
||||||
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Shortest Path **`cities`**
|
### Shortest Path **`cities`**
|
||||||
|
Loading…
Reference in New Issue
Block a user