Skip to content

Commit

Permalink
updates to formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
madebygps committed Jun 12, 2024
1 parent 43b61fe commit 3b346d7
Showing 1 changed file with 47 additions and 50 deletions.
97 changes: 47 additions & 50 deletions docs/phase2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,58 +74,55 @@ Your movie data model could look like:

#### Example API Endpoints

- **GetMovies** could look like this:
`yourapi.com/getmovies`

```json
[
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg"
},
{
"title": "The Shawshank Redemption",
"releaseYear": "1994",
"genre": "Drama, Crime",
"coverUrl": "https://example.com/shawshank-redemption.jpg"
},
{
"title": "The Dark Knight",
"releaseYear": "2008",
"genre": "Action, Crime, Drama",
"coverUrl": "https://example.com/dark-knight.jpg"
}
]
```

- **GetMoviesByYear** could look like:
`yourapi.com/getmoviesbyyear/2010`

```json
[
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg"
}
]
```

- **GetMovieSummary** could look like:
`yourapi.com/getmoviesummary/inception`

```json
- **GetMovies** `yourapi.com/getmovies`

```json
[
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg"
},
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg",
"generatedSummary": "A mind-bending sci-fi thriller about dream theft and manipulation."
"title": "The Shawshank Redemption",
"releaseYear": "1994",
"genre": "Drama, Crime",
"coverUrl": "https://example.com/shawshank-redemption.jpg"
},
{
"title": "The Dark Knight",
"releaseYear": "2008",
"genre": "Action, Crime, Drama",
"coverUrl": "https://example.com/dark-knight.jpg"
}
```
]
```

- **GetMoviesByYear** `yourapi.com/getmoviesbyyear/2010`

```json
[
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg"
}
]
```

- **GetMovieSummary** `yourapi.com/getmoviesummary/inception`

```json
{
"title": "Inception",
"releaseYear": "2010",
"genre": "Science Fiction, Action",
"coverUrl": "https://example.com/inception.jpg",
"generatedSummary": "A mind-bending sci-fi thriller about dream theft and manipulation."
}
```

## Things you should be familiar with at the end of this phase

Expand Down

0 comments on commit 3b346d7

Please sign in to comment.