Skip to content

csse3200/markdown-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

My Project

Resource

Restaurant

Attributes:

  • name (string)
  • cuisine (string)
  • hours (string)
  • rating (integer)

Schema

CREATE TABLE restaurants (
id INTEGER PRIMARY KEY,
name TEXT,
cuisine TEXT,
hours TEXT,
rating INTEGER);

REST Endpoints

Name Method Path
Retrieve restaurant collection GET /restaurants
Retrieve restaurant member GET /restaurants/<id>
Create restaurant member POST /restaurants
Update restaurant member PUT /restaurants/<id>
Delete restaurant member DELETE /restaurants/<id>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published