{"info":{"_postman_id":"4b2bc59d-55e5-4cd1-8b04-aa8f5c19264c","name":"GRU: Get Ready for University","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"14904284","collectionId":"4b2bc59d-55e5-4cd1-8b04-aa8f5c19264c","publishedId":"TzJpizm5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-04-14T23:18:18.000Z"},"item":[{"name":"http://localhost:8000/gruUser-create/","id":"de4c41ea-f4ca-4dde-9078-1bd0d405fa18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"bob@gmail.com","type":"text"},{"key":"name","value":"Bob Smith","type":"text"},{"key":"password","value":"abc123","type":"text"}]},"url":"http://localhost:8000/gruUser-create/","description":"<p>Creates a new user</p>\n","urlObject":{"protocol":"http","port":"8000","path":["gruUser-create",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"0fe6e6de-2eb7-47f8-9949-ec76f4ebd849","name":"http://localhost:8000/gruUser-create/","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"bob@gmail.com","type":"text"},{"key":"name","value":"Bob Smith","type":"text"},{"key":"password","value":"abc123","type":"text"}]},"url":"http://localhost:8000/gruUser-create/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:58:34 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"76"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"user_id\": 1,\n    \"email\": \"bob@gmail.com\",\n    \"name\": \"Bob Smith\",\n    \"password\": \"abc123\"\n}"}],"_postman_id":"de4c41ea-f4ca-4dde-9078-1bd0d405fa18"},{"name":"http://localhost:8000/gruUser","id":"16c19cbe-9095-4122-bd1e-a4733a7c2bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/gruUser","description":"<p>Gets all users on the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["gruUser"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"cfe58e61-c88c-44d5-9513-4264385d6f03","name":"http://localhost:8000/gruUser","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/gruUser"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:12:58 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"149"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"user_id\": 1,\n        \"email\": \"bob@gmail.com\",\n        \"name\": \"Bob Smith\",\n        \"password\": \"abc123\"\n    },\n    {\n        \"user_id\": 2,\n        \"email\": \"bup@gmail.com\",\n        \"name\": \"Nathan\",\n        \"password\": \"123\"\n    }\n]"}],"_postman_id":"16c19cbe-9095-4122-bd1e-a4733a7c2bff"},{"name":"http://localhost:8000/gruUser-delete/:user_id","id":"157a7cf3-1038-449d-8099-073694c3313d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8000/gruUser-delete/2","description":"<p>Deletes a user from the database based on user_id</p>\n","urlObject":{"protocol":"http","port":"8000","path":["gruUser-delete","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"9dea143a-30eb-44ab-8f69-e8cda232ded8","name":"http://localhost:8000/gruUser-delete/2","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8000/gruUser-delete/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:05:17 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"OPTIONS, DELETE"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"27"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"\"Item successfully deleted\""}],"_postman_id":"157a7cf3-1038-449d-8099-073694c3313d"},{"name":"http://localhost:8000/gruUser-update/:user_id","id":"289795d8-b7a6-4c6a-b827-ddbd8f0a27d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"bob1@gmail.com","type":"text"},{"key":"name","value":"Bob Smith","type":"text"},{"key":"password","value":"abc123","type":"text"}]},"url":"http://localhost:8000/gruUser-update/1","description":"<p>Updates a user on the database based on user_id</p>\n","urlObject":{"protocol":"http","port":"8000","path":["gruUser-update","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bdb71151-775e-460a-a327-b06dc960f4d5","name":"http://localhost:8000/gruUser-update/:user_id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"bob1@gmail.com","type":"text"},{"key":"name","value":"Bob Smith","type":"text"},{"key":"password","value":"abc123","type":"text"}]},"url":"http://localhost:8000/gruUser-update/1"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:03:04 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"PUT, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"77"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"user_id\": 1,\n    \"email\": \"bob1@gmail.com\",\n    \"name\": \"Bob Smith\",\n    \"password\": \"abc123\"\n}"}],"_postman_id":"289795d8-b7a6-4c6a-b827-ddbd8f0a27d2"},{"name":"http://localhost:8000/preference-create/","id":"f1784e42-cd07-443f-a2f9-3add010ae174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"d47258369147a5836914725836914726","type":"text"},{"key":"user_id","value":"2","type":"text"}]},"url":"http://localhost:8000/preference-create/","description":"<p>Creates a preference for a user.\n(pref_id must be 32 digits long and includes a letter)</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preference-create",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"04d778b7-2df6-4a85-b74b-1308ea1c0a18","name":"http://localhost:8000/preference-create/","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"d47258369147a5836914725836914726","type":"text"},{"key":"user_id","value":"2","type":"text"}]},"url":"http://localhost:8000/preference-create/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:47:06 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"OPTIONS, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"62"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pref_id\": \"d4725836-9147-a583-6914-725836914726\",\n    \"user_id\": 2\n}"}],"_postman_id":"f1784e42-cd07-443f-a2f9-3add010ae174"},{"name":"http://localhost:8000/preference/","id":"f90dbb40-699d-4f4a-8d9d-7aa9dfc552cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/preference","description":"<p>Gets all preferences on the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preference"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"e81bf25c-0d1c-4b9b-b914-e516ab89f4cf","name":"http://localhost:8000/preference/","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/preference"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:30:32 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"127"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"d4725836-9147-a583-6914-725836914726\",\n        \"user_id\": 2\n    }\n]"}],"_postman_id":"f90dbb40-699d-4f4a-8d9d-7aa9dfc552cc"},{"name":"http://localhost:8000/preference-delete/:pref_id","id":"9234949b-8463-4b65-af37-0dc22a0c8ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8000/preference-delete/b47258369147a5836914725836914726","description":"<p>Delete a preference from the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preference-delete","b47258369147a5836914725836914726"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"0620e92c-59a8-4ae1-b8ee-d8ba2d60685d","name":"http://localhost:8000/preference-delete/","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8000/preference-delete/b47258369147a5836914725836914726"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:35:24 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"DELETE, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"27"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"\"Item successfully deleted\""}],"_postman_id":"9234949b-8463-4b65-af37-0dc22a0c8ae0"},{"name":"http://localhost:8000/preferenceContain-create/","id":"0d15bd10-347d-4a27-b624-c50826ffba0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"uni_name","value":"California Institute of Technology","type":"text"},{"key":"user_id","value":"1","type":"text"}]},"url":"http://localhost:8000/preferenceContain-create/","description":"<p>Create a university preference linked to a user preference</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferenceContain-create",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"68034734-24c0-4e05-a418-834ab89f31bf","name":"http://localhost:8000/preferenceContain-create/","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"uni_name","value":"California Institute of Technology","type":"text"},{"key":"user_id","value":"1","type":"text"}]},"url":"http://localhost:8000/preferenceContain-create/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:46:43 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"OPTIONS, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"110"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n    \"uni_name\": \"California Institute of Technology\",\n    \"user_id\": 1\n}"}],"_postman_id":"0d15bd10-347d-4a27-b624-c50826ffba0f"},{"name":"http://localhost:8000/preferenceContain/","id":"807cff11-1895-4d6a-8b52-4dd0cf26e729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/preferenceContain/","description":"<p>Gets all preferenceContain objects on the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferenceContain",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"fd067004-8f96-4cd5-bcac-b370e9dda2f7","name":"http://localhost:8000/preferenceContain/","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/preferenceContain/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:27:26 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"219"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n        \"uni_name\": \"California Institute of Technology\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"d4725836-9147-a583-6914-725836914726\",\n        \"uni_name\": \"University of British Columbia\",\n        \"user_id\": 2\n    }\n]"}],"_postman_id":"807cff11-1895-4d6a-8b52-4dd0cf26e729"},{"name":"http://localhost:8000/preferenceContain/:pref_id","id":"527abfb7-2611-4fb3-b430-4c5234409c9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/preferenceContain/:pref_id","description":"<p>Gets a preferenceContain object based on pref_id</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferenceContain",":pref_id"],"host":["localhost"],"query":[],"variable":[{"type":"any","value":"","key":"pref_id"}]}},"response":[{"id":"88096b71-35cd-40ed-bdf2-0f1685381db5","name":"http://localhost:8000/preferenceContain/:pref_id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/preferenceContain/d47258369147a5836914725836914726"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:29:11 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"106"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pref_id\": \"d4725836-9147-a583-6914-725836914726\",\n    \"uni_name\": \"University of British Columbia\",\n    \"user_id\": 2\n}"}],"_postman_id":"527abfb7-2611-4fb3-b430-4c5234409c9b"},{"name":"http://localhost:8000/preferenceContain-update/:pref_id","id":"e23c6ce6-32f0-4979-8323-2fc2d3dada07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"uni_name","value":"Yale University","type":"text"},{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"user_id","value":"2","type":"text"}]},"url":"http://localhost:8000/preferenceContain-update/c47258369147a5836914725836914726","description":"<p>Modify a preferenceContain object</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferenceContain-update","c47258369147a5836914725836914726"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"1acf3e01-d890-4d4c-bc61-7b18bf1e2544","name":"http://localhost:8000/preferenceContain-update/c47258369147a5836914725836914726","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"uni_name","value":"Yale University","type":"text"},{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"user_id","value":"2","type":"text"}]},"url":"http://localhost:8000/preferenceContain-update/c47258369147a5836914725836914726"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:50:39 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"PUT, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"91"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n    \"uni_name\": \"Yale University\",\n    \"user_id\": 2\n}"}],"_postman_id":"e23c6ce6-32f0-4979-8323-2fc2d3dada07"},{"name":"http://localhost:8000/preferenceContain-delete/:pref_id","id":"8c66633f-6d99-4a52-8992-6ebfae40290c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8000/preferenceContain-delete/c47258369147a5836914725836914726","description":"<p>Delete a preferenceContain object</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferenceContain-delete","c47258369147a5836914725836914726"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d01d03fe-194c-44d9-a913-5ed152154bb9","name":"http://localhost:8000/preferenceContain-delete/","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8000/preferenceContain-delete/c47258369147a5836914725836914726"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 22:54:47 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"DELETE, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"27"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"\"Item successfully deleted\""}],"_postman_id":"8c66633f-6d99-4a52-8992-6ebfae40290c"},{"name":"http://localhost:8000/preferredUni-create/","id":"38d6f6bb-de53-4dfd-9c4f-5debb3867f82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"preferred_uni_name","value":"Yale University","type":"text"},{"key":"user_id","value":"1","type":"text"}]},"url":"http://localhost:8000/preferredUni-create/","description":"<p>Create a preferredUni object</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferredUni-create",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"05e73665-ec7e-4429-8229-22d8a469ea37","name":"http://localhost:8000/preferredUni-create/","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pref_id","value":"c47258369147a5836914725836914726","type":"text"},{"key":"preferred_uni_name","value":"Yale University","type":"text"},{"key":"user_id","value":"1","type":"text"}]},"url":"http://localhost:8000/preferredUni-create/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:41:34 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"OPTIONS, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"101"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n    \"preferred_uni_name\": \"Yale University\",\n    \"user_id\": 1\n}"}],"_postman_id":"38d6f6bb-de53-4dfd-9c4f-5debb3867f82"},{"name":"http://localhost:8000/preferredUni","id":"4021ed4d-bd49-4f16-b8e9-12a722784851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/preferredUni/","description":"<p>Gets all preferredUni objects in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferredUni",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"4db6e4a7-e277-437a-a944-0e94757a7f91","name":"http://localhost:8000/preferredUni","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/preferredUni/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:42:21 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"639"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"pref_id\": \"0ba18f7b-2717-4c3c-bc4e-0c45ef2cee00\",\n        \"preferred_uni_name\": \"Yale University\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"824c1dea-028c-41ff-9c5e-a8000548d809\",\n        \"preferred_uni_name\": \"University of Pennsylvania\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"f1d351d7-feba-4055-97af-1090cd6e53bf\",\n        \"preferred_uni_name\": \"University of Chicago\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"f5d3255f-e38e-4339-a683-2a75321de719\",\n        \"preferred_uni_name\": \"Stanford University\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"72c78d04-98c4-4409-bc4e-66cabe0ec550\",\n        \"preferred_uni_name\": \"Princeton University\",\n        \"user_id\": 1\n    },\n    {\n        \"pref_id\": \"c4725836-9147-a583-6914-725836914726\",\n        \"preferred_uni_name\": \"Yale University\",\n        \"user_id\": 1\n    }\n]"}],"_postman_id":"4021ed4d-bd49-4f16-b8e9-12a722784851"},{"name":"http://localhost:8000/preferredUni-delete/:pref_id","id":"798754be-b83b-4567-82a9-8491e70f5d25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8000/preferredUni-delete/c47258369147a5836914725836914726","description":"<p>Delete a preferredUni object</p>\n","urlObject":{"protocol":"http","port":"8000","path":["preferredUni-delete","c47258369147a5836914725836914726"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"5ab80dbc-e2f8-4ae1-9c81-03fdb6bd7bb9","name":"http://localhost:8000/preferredUni-delete/c47258369147a5836914725836914726","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:8000/preferredUni-delete/c47258369147a5836914725836914726"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:40:29 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"DELETE, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"27"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"\"Item successfully deleted\""}],"_postman_id":"798754be-b83b-4567-82a9-8491e70f5d25"},{"name":"http://localhost:8000/university","id":"eaae1dae-30bd-47d4-8889-6fd9e61de85d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:8000/university","description":"<p>Gets information for all universities in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["university"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b44c09d4-8e48-4798-9581-b50759515b47","name":"localhost:8000/university","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:8000/university"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 20:57:41 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"5115"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"California Institute of Technology\",\n        \"location\": \"Pasadena, California, United States\",\n        \"description\": \"A private research university founded in 1897\",\n        \"impact_on_industry\": \"Caltech is known for its strength in science and engineering and manages NASA's Jet Propulsion Laboratory.\",\n        \"finances\": 54600\n    },\n    {\n        \"name\": \"Columbia University\",\n        \"location\": \"New York City, New York, United States\",\n        \"description\": \"Private Ivy League research university established in 1754. It is the fifth oldest institution of higher education in the United States\",\n        \"impact_on_industry\": \"Columbia scientists have played an important role in scientific breakthroughs including brain-computer interface, the laser, nuclear magnetic resonance, the first nuclear fission reaction in the Americas and more\",\n        \"finances\": 61788\n    },\n    {\n        \"name\": \"Cornell University\",\n        \"location\": \"Ithaca, New York, United States\",\n        \"description\": \"Private, statutory, Ivy League and land-grant research university founded in 1865. Cornell is one of the few land-grant universities in the US.\",\n        \"impact_on_industry\": \"Cornell has produced 61 Nobel Laureates, 10 current fortune 500 CEOs, 35 billionaire alumni and more.\",\n        \"finances\": 57222\n    },\n    {\n        \"name\": \"Harvard University\",\n        \"location\": \"Cambridge, Massachusetts, United States\",\n        \"description\": \"A private Ivy League research university established in 1636. Harvard is the oldest insitution of higher learning in the United States and is among the most prestigious in the world.\",\n        \"impact_on_industry\": \"Harvard has more alumni, faculty, and researchers who have won Nobel Prizes (161) than any other university in the world. Its alumni include eight United States presidents and over 180 living billionaires\",\n        \"finances\": 51925\n    },\n    {\n        \"name\": \"Massachusetts Institute of Technology\",\n        \"location\": \"Cambridge, Massachusetts, United States\",\n        \"description\": \"A private land-grant research university founded in 1861 and is regarded as one of the most prestigious universities in the world. The institute has an urban campus that extends more than a mile.\",\n        \"impact_on_industry\": \"MIT plays a key role in the developement of many aspects of modern science, engineering, mathematics, and technology and is widely known for its innovation and academic strength\",\n        \"finances\": 53790\n    },\n    {\n        \"name\": \"Princeton University\",\n        \"location\": \"Princeton, New Jersey, United States\",\n        \"description\": \"Private Ivy League research university founded in 1746 and is the fourth oldest institution of higher education in the United States.\",\n        \"impact_on_industry\": \"Princeton has produced 69 Nobel laureates, 15 Fields Medalists and 14 Turing Award laureates. Princeton alumni include 2 US Presidents and 12 US Supreme Court Justices.\",\n        \"finances\": 52800\n    },\n    {\n        \"name\": \"Stanford University\",\n        \"location\": \"Stanford, California, United States\",\n        \"description\": \"A private research university founded in 1885 and is generally ranked among the best universities in the world.\",\n        \"impact_on_industry\": \"Stanford University is particularly noted for its entrepreneurship and is one of the most successful universities in attracting funding for start-ups.\",\n        \"finances\": 53529\n    },\n    {\n        \"name\": \"University of British Columbia\",\n        \"location\": \"Vancouver, British Columbia, Canada\",\n        \"description\": \"Public research university with campuses in Vancouver and Kelowna. UBC was established in 1908 and ranks among the top 3 universities in Canada.\",\n        \"impact_on_industry\": \"UBC alumni include 8 Nobel laureates, 65 Olympic athletes, three Canadian prime ministers and more.\",\n        \"finances\": 38946\n    },\n    {\n        \"name\": \"University of Calgary\",\n        \"location\": \"Calgary, Alberta, Canada\",\n        \"description\": \"A public research university started in 1944 as a branch of the University of Alberta before becoming an autonomous university in 1966. It is composed of 14 faculties and over 85 research institutes and centres\",\n        \"impact_on_industry\": \"The University of Calgary is ranked one of the top 10 research universities in Canada and works to find solutions to some of the most challenging problems facing society\",\n        \"finances\": 12696\n    },\n    {\n        \"name\": \"University of Chicago\",\n        \"location\": \"Chicago, Illinois, United States\",\n        \"description\": \"A private research university founded in 1980 and is ranked among the top universities in the world.\",\n        \"impact_on_industry\": \"University of Chicago scholars have played a major role in the developement of many academic disciplines, including economics, law, literary criticism, mathematics and more.\",\n        \"finances\": 60552\n    },\n    {\n        \"name\": \"University of Pennsylvania\",\n        \"location\": \"Philadelphia, Pennsylvania, United States\",\n        \"description\": \"Private Ivy League research university founded in 1740.\",\n        \"impact_on_industry\": \"Several major scientific and medical discoveries have taken place at Penn. Among them are the first general puropose electronic computer, the dialysis machine and vacines for Rubella and Hepatitis B.\",\n        \"finances\": 57770\n    },\n    {\n        \"name\": \"Yale University\",\n        \"location\": \"New Haven, Connecticut, United States\",\n        \"description\": \"Private Ivy League university founded in 1701. It is the third oldest institution of higher education in the US\",\n        \"impact_on_industry\": \"Yale alumni have had a considerable presence in the US government in all 3 branches.\",\n        \"finances\": 55500\n    }\n]"}],"_postman_id":"eaae1dae-30bd-47d4-8889-6fd9e61de85d"},{"name":"http://localhost:8000/university/:name","id":"54b4d615-8315-47bf-abed-10ba0d95576c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/university/:name","description":"<p>Gets information for university based on name</p>\n","urlObject":{"protocol":"http","port":"8000","path":["university",":name"],"host":["localhost"],"query":[],"variable":[{"type":"any","value":"","key":"name"}]}},"response":[{"id":"89136c9b-53a9-4bb5-9665-5a3536baf642","name":"localhost:8000/university/","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/university/University of Calgary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 20:59:02 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"507"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"University of Calgary\",\n    \"location\": \"Calgary, Alberta, Canada\",\n    \"description\": \"A public research university started in 1944 as a branch of the University of Alberta before becoming an autonomous university in 1966. It is composed of 14 faculties and over 85 research institutes and centres\",\n    \"impact_on_industry\": \"The University of Calgary is ranked one of the top 10 research universities in Canada and works to find solutions to some of the most challenging problems facing society\",\n    \"finances\": 12696\n}"}],"_postman_id":"54b4d615-8315-47bf-abed-10ba0d95576c"},{"name":"http://localhost:8000/faculty","id":"78cb55c4-6b3a-4e2b-82ca-fad57b28bf83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/faculty","description":"<p>Gets information for all faculties in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["faculty"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"78accc3b-3c3a-4978-a460-0475726dfddd","name":"http://localhost:8000/faculty","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/faculty"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:03:36 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1908"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"faculty_id\": 1,\n        \"name\": \"Faculty of Science\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"faculty_id\": 2,\n        \"name\": \"Schulich School of Engineering\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"faculty_id\": 3,\n        \"name\": \"Faculty of Art\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"faculty_id\": 4,\n        \"name\": \"School of Engineering\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"faculty_id\": 5,\n        \"name\": \"School of Science\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"faculty_id\": 6,\n        \"name\": \"The School of Humanities and Sciences\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"faculty_id\": 7,\n        \"name\": \"The School of Earth, Energy and Environmental Sciences\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"faculty_id\": 8,\n        \"name\": \"Division of Continuing Education\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"faculty_id\": 9,\n        \"name\": \"Harvard College\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"faculty_id\": 10,\n        \"name\": \"Division of Physics, Mathematics and Astronomy\",\n        \"description\": \"b''\",\n        \"uni_name\": \"California Institute of Technology\"\n    },\n    {\n        \"faculty_id\": 11,\n        \"name\": \"Department of Economics\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of Chicago\"\n    },\n    {\n        \"faculty_id\": 12,\n        \"name\": \"School of Engineering and Applied Science\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Princeton University\"\n    },\n    {\n        \"faculty_id\": 13,\n        \"name\": \"Wharton School\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of Pennsylvania\"\n    },\n    {\n        \"faculty_id\": 14,\n        \"name\": \"College of Agriculture and Life Sciences\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Cornell University\"\n    },\n    {\n        \"faculty_id\": 15,\n        \"name\": \"Department of Political Science\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Yale University\"\n    },\n    {\n        \"faculty_id\": 16,\n        \"name\": \"Columbia College\",\n        \"description\": \"b''\",\n        \"uni_name\": \"Columbia University\"\n    },\n    {\n        \"faculty_id\": 17,\n        \"name\": \"Faculty of Forestry\",\n        \"description\": \"b''\",\n        \"uni_name\": \"University of British Columbia\"\n    }\n]"}],"_postman_id":"78cb55c4-6b3a-4e2b-82ca-fad57b28bf83"},{"name":"http://localhost:8000/professor","id":"5bf7b268-910b-43bc-bc72-550b7d73e5e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/professor","description":"<p>Gets information for all professors in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["professor"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"d93bacd7-f48f-43fb-8b33-ac4b9fa7cf21","name":"http://localhost:8000/professor","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/professor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:04:56 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"633"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"prof_id\": 3,\n        \"rating\": 4.5,\n        \"name\": \"Chris Vaccaro\",\n        \"uni_name\": \"University of Calgary\",\n        \"faculty_id\": 2\n    },\n    {\n        \"prof_id\": 5,\n        \"rating\": 4.7,\n        \"name\": \"Clint Adrichem\",\n        \"uni_name\": \"Massachusetts Institute of Technology\",\n        \"faculty_id\": 4\n    },\n    {\n        \"prof_id\": 4,\n        \"rating\": 4.3,\n        \"name\": \"Ian Flynn\",\n        \"uni_name\": \"University of Calgary\",\n        \"faculty_id\": 2\n    },\n    {\n        \"prof_id\": 2,\n        \"rating\": 4.2,\n        \"name\": \"Isabelle Mortensen\",\n        \"uni_name\": \"University of Calgary\",\n        \"faculty_id\": 1\n    },\n    {\n        \"prof_id\": 1,\n        \"rating\": 4.4,\n        \"name\": \"Max Alexanderson\",\n        \"uni_name\": \"University of Calgary\",\n        \"faculty_id\": 1\n    },\n    {\n        \"prof_id\": 6,\n        \"rating\": 4.1,\n        \"name\": \"Soma Keo\",\n        \"uni_name\": \"Massachusetts Institute of Technology\",\n        \"faculty_id\": 5\n    }\n]"}],"_postman_id":"5bf7b268-910b-43bc-bc72-550b7d73e5e3"},{"name":"http://localhost:8000/provides","id":"93e86a01-0be9-41fb-9ec3-8cc3535d4bf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/provides","description":"<p>Gets all degrees offered by universities in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["provides"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bbc08767-b1ef-4e37-9ca9-a7547875199f","name":"http://localhost:8000/provides","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/provides"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:11:58 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1470"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"provides_id\": 1,\n        \"uni_name\": \"University of Calgary\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 2,\n        \"uni_name\": \"University of Calgary\",\n        \"degree_name\": \"Bachelor of Science in Engineering\"\n    },\n    {\n        \"provides_id\": 3,\n        \"uni_name\": \"University of Calgary\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 4,\n        \"uni_name\": \"Massachusetts Institute of Technology\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 5,\n        \"uni_name\": \"Stanford University\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 6,\n        \"uni_name\": \"Stanford University\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 7,\n        \"uni_name\": \"Harvard University\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 8,\n        \"uni_name\": \"Harvard University\",\n        \"degree_name\": \"Bachelor of Liberal Arts\"\n    },\n    {\n        \"provides_id\": 9,\n        \"uni_name\": \"California Institute of Technology\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 10,\n        \"uni_name\": \"University of Chicago\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 11,\n        \"uni_name\": \"Princeton University\",\n        \"degree_name\": \"Bachelor of Science in Engineering\"\n    },\n    {\n        \"provides_id\": 12,\n        \"uni_name\": \"University of Pennsylvania\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 13,\n        \"uni_name\": \"Cornell University\",\n        \"degree_name\": \"Bachelor of Science\"\n    },\n    {\n        \"provides_id\": 14,\n        \"uni_name\": \"Yale University\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 15,\n        \"uni_name\": \"Columbia University\",\n        \"degree_name\": \"Bachelor of Arts\"\n    },\n    {\n        \"provides_id\": 16,\n        \"uni_name\": \"University of British Columbia\",\n        \"degree_name\": \"Bachelor of Science\"\n    }\n]"}],"_postman_id":"93e86a01-0be9-41fb-9ec3-8cc3535d4bf2"},{"name":"http://localhost:8000/major","id":"fd9d57fd-d2a2-4090-af10-64f22311a188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/major","description":"<p>Gets all majors that are offered by degrees in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["major"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"e369c092-f811-4448-8d04-80205e1b5425","name":"http://localhost:8000/major","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/major"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:16:02 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2029"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"major_code\": 1,\n        \"major_name\": \"Computer Science\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 1\n    },\n    {\n        \"major_code\": 2,\n        \"major_name\": \"Mechanical Engineering\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science in Engineering\",\n        \"faculty_id\": 2\n    },\n    {\n        \"major_code\": 3,\n        \"major_name\": \"Chemical Engineering\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science in Engineering\",\n        \"faculty_id\": 2\n    },\n    {\n        \"major_code\": 4,\n        \"major_name\": \"Electrical Engineering\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 4\n    },\n    {\n        \"major_code\": 5,\n        \"major_name\": \"Brain and Cognitive Science\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 5\n    },\n    {\n        \"major_code\": 6,\n        \"major_name\": \"Psychology\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Arts\",\n        \"faculty_id\": 6\n    },\n    {\n        \"major_code\": 7,\n        \"major_name\": \"Geophysics\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 7\n    },\n    {\n        \"major_code\": 8,\n        \"major_name\": \"Business administration and management\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Liberal Arts\",\n        \"faculty_id\": 8\n    },\n    {\n        \"major_code\": 9,\n        \"major_name\": \"Anthropology\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Arts\",\n        \"faculty_id\": 9\n    },\n    {\n        \"major_code\": 10,\n        \"major_name\": \"Astrophysics\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 10\n    },\n    {\n        \"major_code\": 11,\n        \"major_name\": \"Economics\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Arts\",\n        \"faculty_id\": 11\n    },\n    {\n        \"major_code\": 12,\n        \"major_name\": \"Computer Science\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science in Engineering\",\n        \"faculty_id\": 12\n    },\n    {\n        \"major_code\": 13,\n        \"major_name\": \"Accounting\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 13\n    },\n    {\n        \"major_code\": 14,\n        \"major_name\": \"Agricultural Sciences\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 14\n    },\n    {\n        \"major_code\": 15,\n        \"major_name\": \"Political Science\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Arts\",\n        \"faculty_id\": 15\n    },\n    {\n        \"major_code\": 16,\n        \"major_name\": \"History\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Arts\",\n        \"faculty_id\": 16\n    },\n    {\n        \"major_code\": 17,\n        \"major_name\": \"Forestry\",\n        \"no_of_years\": 4,\n        \"degree_name\": \"Bachelor of Science\",\n        \"faculty_id\": 17\n    }\n]"}],"_postman_id":"fd9d57fd-d2a2-4090-af10-64f22311a188"},{"name":"http://localhost:8000/entryRequirement","id":"c45d209d-3178-4d15-ad03-09abf8b790ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/entryRequirement","description":"<p>Gets entry requirements for majors</p>\n","urlObject":{"protocol":"http","port":"8000","path":["entryRequirement"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"878ae7f3-68c4-441e-8ccb-1e7ecf766425","name":"http://localhost:8000/entryRequirement","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/entryRequirement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:17:54 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"266"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"major_code\": 1,\n        \"class_name\": \"Math 30\",\n        \"grade\": 70\n    },\n    {\n        \"major_code\": 2,\n        \"class_name\": \"Physics 30\",\n        \"grade\": 85\n    },\n    {\n        \"major_code\": 3,\n        \"class_name\": \"Physics 30\",\n        \"grade\": 80\n    },\n    {\n        \"major_code\": 4,\n        \"class_name\": \"SAT Math\",\n        \"grade\": 790\n    },\n    {\n        \"major_code\": 4,\n        \"class_name\": \"SAT EBRW\",\n        \"grade\": 730\n    }\n]"}],"_postman_id":"c45d209d-3178-4d15-ad03-09abf8b790ed"},{"name":"http://localhost:8000/equivalentClass","id":"8fa7466a-df17-4ce3-a397-695b6f2044d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/equivalentClass","description":"<p>Gets equivalent classes for the entry requirements on the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["equivalentClass"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"0949a0fd-3996-4a20-8aa4-fa0a38cb0f29","name":"http://localhost:8000/equivalentClass","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/equivalentClass"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:19:54 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"212"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"major_code\": 1,\n        \"class_name\": \"Math 30\",\n        \"name\": \"IB Math\",\n        \"grade\": 5\n    },\n    {\n        \"major_code\": 1,\n        \"class_name\": \"Math 30\",\n        \"name\": \"AP Calculus AB\",\n        \"grade\": 4\n    },\n    {\n        \"major_code\": 4,\n        \"class_name\": \"SAT Math\",\n        \"name\": \"ACT Math\",\n        \"grade\": 35\n    }\n]"}],"_postman_id":"8fa7466a-df17-4ce3-a397-695b6f2044d7"},{"name":"http://localhost:8000/alumni","id":"8a1506d4-9b92-41db-93df-69e7c4768522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/alumni","description":"<p>Gets all alumni of universities on the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["alumni"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2ed68b2e-66da-40af-901b-af07b1c7eb87","name":"http://localhost:8000/alumni","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/alumni"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:32:01 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"887"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"alumni_id\": 2,\n        \"name\": \"James Gosling\",\n        \"graduation_year\": 1977,\n        \"achievement_description\": \"Inventor of the Java programming language\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"alumni_id\": 5,\n        \"name\": \"John Roberts\",\n        \"graduation_year\": 1976,\n        \"achievement_description\": \"17th Chief Justice of the United States\",\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"alumni_id\": 3,\n        \"name\": \"Rudolf E. Kalman\",\n        \"graduation_year\": 1953,\n        \"achievement_description\": \"Won the Charles Stark Draper Prize in 2008 for the developement of the Kalman Filter.\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"alumni_id\": 4,\n        \"name\": \"Scott A. McGregor\",\n        \"graduation_year\": 1978,\n        \"achievement_description\": \"Lead developer of Windows 1.0.\",\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"alumni_id\": 1,\n        \"name\": \"Stephen Harper\",\n        \"graduation_year\": 1985,\n        \"achievement_description\": \"22nd Prime Minister of Canada (2006 - 2015)\",\n        \"uni_name\": \"University of Calgary\"\n    }\n]"}],"_postman_id":"8a1506d4-9b92-41db-93df-69e7c4768522"},{"name":"http://localhost:8000/alumni/:alumni_id","id":"5fcff86a-7c77-4933-bbbe-f40ab020f6d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/alumni/2","description":"<p>Get an alumni by alumni_id.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["alumni","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"95ace153-7109-48d4-80e9-c1e7156c901e","name":"http://localhost:8000/alumni/:alumni_id","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/alumni/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:06:27 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"166"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"alumni_id\": 2,\n    \"name\": \"James Gosling\",\n    \"graduation_year\": 1977,\n    \"achievement_description\": \"Inventor of the Java programming language\",\n    \"uni_name\": \"University of Calgary\"\n}"}],"_postman_id":"5fcff86a-7c77-4933-bbbe-f40ab020f6d0"},{"name":"http://localhost:8000/course","id":"861d64c7-0f91-4ec4-822e-4c4b4bc17b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/course","description":"<p>Gets courses offered by faculties in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["course"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"bf0fb82d-caf1-4f3d-876e-3f74d8857d20","name":"http://localhost:8000/course","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/course"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:34:26 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"612"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"course_code\": 1,\n        \"course_number\": 481,\n        \"course_name\": \"Human Computer Interactions I\",\n        \"faculty_id\": 1\n    },\n    {\n        \"course_code\": 2,\n        \"course_number\": 329,\n        \"course_name\": \"Explorations in Computer Security\",\n        \"faculty_id\": 1\n    },\n    {\n        \"course_code\": 3,\n        \"course_number\": 485,\n        \"course_name\": \"Mechanical Engineering Thermodynamics\",\n        \"faculty_id\": 2\n    },\n    {\n        \"course_code\": 4,\n        \"course_number\": 501,\n        \"course_name\": \"Transport Phenomena\",\n        \"faculty_id\": 2\n    },\n    {\n        \"course_code\": 5,\n        \"course_number\": 6.013,\n        \"course_name\": \"Electromagnetic Waves and Applications\",\n        \"faculty_id\": 4\n    },\n    {\n        \"course_code\": 6,\n        \"course_number\": 9.46,\n        \"course_name\": \"Neuroscience of Morality\",\n        \"faculty_id\": 5\n    }\n]"}],"_postman_id":"861d64c7-0f91-4ec4-822e-4c4b4bc17b12"},{"name":"http://localhost:8000/ranking","id":"dadf9bd1-56c1-4d2e-86dd-5ef766897f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/ranking","description":"<p>Gets rankings for all universities in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["ranking"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"87787417-29b9-462c-93cf-324901cffd8c","name":"http://localhost:8000/ranking","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/ranking"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:42:06 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1337"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"uni_code\": 2,\n        \"best_program\": \"Engineering\",\n        \"rank\": 1,\n        \"prev_year_rank\": 1,\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"uni_code\": 3,\n        \"best_program\": \"Business\",\n        \"rank\": 2,\n        \"prev_year_rank\": 2,\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"uni_code\": 4,\n        \"best_program\": \"Economics\",\n        \"rank\": 3,\n        \"prev_year_rank\": 3,\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"uni_code\": 5,\n        \"best_program\": \"Engineering\",\n        \"rank\": 4,\n        \"prev_year_rank\": 5,\n        \"uni_name\": \"California Institute of Technology\"\n    },\n    {\n        \"uni_code\": 6,\n        \"best_program\": \"Economics\",\n        \"rank\": 9,\n        \"prev_year_rank\": 10,\n        \"uni_name\": \"University of Chicago\"\n    },\n    {\n        \"uni_code\": 7,\n        \"best_program\": \"Computer Science\",\n        \"rank\": 12,\n        \"prev_year_rank\": 13,\n        \"uni_name\": \"Princeton University\"\n    },\n    {\n        \"uni_code\": 8,\n        \"best_program\": \"Accounting\",\n        \"rank\": 16,\n        \"prev_year_rank\": 15,\n        \"uni_name\": \"University of Pennsylvania\"\n    },\n    {\n        \"uni_code\": 10,\n        \"best_program\": \"Political Science\",\n        \"rank\": 17,\n        \"prev_year_rank\": 17,\n        \"uni_name\": \"Yale University\"\n    },\n    {\n        \"uni_code\": 9,\n        \"best_program\": \"Agricultural Sciences\",\n        \"rank\": 18,\n        \"prev_year_rank\": 14,\n        \"uni_name\": \"Cornell University\"\n    },\n    {\n        \"uni_code\": 11,\n        \"best_program\": \"History\",\n        \"rank\": 19,\n        \"prev_year_rank\": 18,\n        \"uni_name\": \"Columbia University\"\n    },\n    {\n        \"uni_code\": 12,\n        \"best_program\": \"Forestry\",\n        \"rank\": 45,\n        \"prev_year_rank\": 51,\n        \"uni_name\": \"University of British Columbia\"\n    },\n    {\n        \"uni_code\": 1,\n        \"best_program\": \"Engineering\",\n        \"rank\": 246,\n        \"prev_year_rank\": 233,\n        \"uni_name\": \"University of Calgary\"\n    }\n]"}],"_postman_id":"dadf9bd1-56c1-4d2e-86dd-5ef766897f5b"},{"name":"http://localhost:8000/ranking/:uni_code","id":"1daccaea-23f9-42e3-944d-6c4fe4e8aac3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/ranking/2","description":"<p>gets university ranking by uni_code</p>\n","urlObject":{"protocol":"http","port":"8000","path":["ranking","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"348c5c16-d7eb-4bd2-a3bb-e5916e4ba0c7","name":"http://localhost:8000/ranking/2","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/ranking/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:44:02 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"122"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"uni_code\": 2,\n    \"best_program\": \"Engineering\",\n    \"rank\": 1,\n    \"prev_year_rank\": 1,\n    \"uni_name\": \"Massachusetts Institute of Technology\"\n}"}],"_postman_id":"1daccaea-23f9-42e3-944d-6c4fe4e8aac3"},{"name":"http://localhost:8000/sport","id":"365911ee-ca03-4461-9601-41aa2a7fd8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/sport","description":"<p>Gets all sport teams in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["sport"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"18d4078d-6131-4559-a179-2f3f29140430","name":"http://localhost:8000/sport","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/sport"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:46:13 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"257"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Crimson\",\n        \"sport\": \"Baseball\"\n    },\n    {\n        \"name\": \"Cardinal\",\n        \"sport\": \"Lacrosse\"\n    },\n    {\n        \"name\": \"Engineers\",\n        \"sport\": \"Men's Basketball\"\n    },\n    {\n        \"name\": \"Bulldogs\",\n        \"sport\": \"Men's Hockey\"\n    },\n    {\n        \"name\": \"Maroons\",\n        \"sport\": \"Men's Soccer\"\n    },\n    {\n        \"name\": \"Dinos\",\n        \"sport\": \"Women's Volleyball\"\n    }\n]"}],"_postman_id":"365911ee-ca03-4461-9601-41aa2a7fd8d6"},{"name":"http://localhost:8000/award","id":"ce3426fd-dcfc-4170-b9ac-757d173e49ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/award","description":"<p>Gets all awards of sports teams in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["award"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f1431ad2-ea58-469a-b2a3-94d92b6e820b","name":"http://localhost:8000/award","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/award"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:49:45 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"545"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"award_name\": \"Ivy League Baseball Champions\",\n        \"sport\": \"Baseball\",\n        \"name\": \"Crimson\",\n        \"year_awarded\": 2019\n    },\n    {\n        \"award_name\": \"Mountain Pacific Sports Federation Champion\",\n        \"sport\": \"Lacrosse\",\n        \"name\": \"Cardinal\",\n        \"year_awarded\": 2015\n    },\n    {\n        \"award_name\": \"NEWMAC Sports Tournament Champion\",\n        \"sport\": \"Men's Basketball\",\n        \"name\": \"Engineers\",\n        \"year_awarded\": 2018\n    },\n    {\n        \"award_name\": \"NCAA Division 1 Champions\",\n        \"sport\": \"Men's Hockey\",\n        \"name\": \"Bulldogs\",\n        \"year_awarded\": 2013\n    },\n    {\n        \"award_name\": \"Canada West Champion\",\n        \"sport\": \"Women's Volleyball\",\n        \"name\": \"Dinos\",\n        \"year_awarded\": 2018\n    }\n]"}],"_postman_id":"ce3426fd-dcfc-4170-b9ac-757d173e49ea"},{"name":"http://localhost:8000/club","id":"41df6868-104a-4f16-a157-4bdde9947df9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/club","description":"<p>Gets all clubs in the database</p>\n","urlObject":{"protocol":"http","port":"8000","path":["club"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"08e05eb9-9d13-487f-af2e-32542cccc37a","name":"http://localhost:8000/","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/club"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:51:54 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2105"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"club_id\": 1,\n        \"name\": \"Birthday Wishes\",\n        \"description\": \"Student run organization devoted to providing underprivileged children (ages 4 - 12) from financially insecure homes with a birthday party\"\n    },\n    {\n        \"club_id\": 2,\n        \"name\": \"Bouldering Club\",\n        \"description\": \"\\\"Bouldering is 10% climbing, 90% socializing.\\\" The Bouldering Club is entirely about encouraging new climbers and boulderers to give the sport a shot.\"\n    },\n    {\n        \"club_id\": 3,\n        \"name\": \"Laboratory for Chocolate Science\",\n        \"description\": \"A club dedicated to the appreciation of our favorite substance in all its myriad forms. Only group at MIT that orders more than 500lbs of chocolate a year.\"\n    },\n    {\n        \"club_id\": 4,\n        \"name\": \"Stanford Chess Club\",\n        \"description\": \"A chess club at Stanford University\"\n    },\n    {\n        \"club_id\": 5,\n        \"name\": \"Harvard College Culinary Club\",\n        \"description\": \"A club that consists of a student board that organizes events related to food and cooking all across campus.\"\n    },\n    {\n        \"club_id\": 6,\n        \"name\": \"AI Robotics Ethics Society\",\n        \"description\": \"At the AI Robotics Ethics Society, we focus on educating tomorrow's AI leaders in ethical AI principles to ensure AI is created ethically and responsibly.\"\n    },\n    {\n        \"club_id\": 7,\n        \"name\": \"eSports, Princeton\",\n        \"description\": \"A casual/competitive club dedicated to playing games such as League of Legends, Dota 2, Overwatch, and Smash. Members hang out to play casually and play competitively against other schools.\"\n    },\n    {\n        \"club_id\": 8,\n        \"name\": \"Keynotes A Cappella\",\n        \"description\": \"A co-ed a cappella group at Penn that performs music in a variety of genres, including pop, rock, and R&B.\"\n    },\n    {\n        \"club_id\": 9,\n        \"name\": \"Beekeeping Club\",\n        \"description\": \"A club that provides opportunities to learn beekeeping in a hands-on setting.\"\n    },\n    {\n        \"club_id\": 10,\n        \"name\": \"Photography Society\",\n        \"description\": \"A group including professional and amateur photographers alike, creating a network of photographers at various student publications, across campus and beyond.\"\n    },\n    {\n        \"club_id\": 11,\n        \"name\": \"AMS Billiards club\",\n        \"description\": \"A club that aims to provide a social and welcoming environment to all UBC students. We probide the opportunity to release daily stress with a game of pool\"\n    }\n]"}],"_postman_id":"41df6868-104a-4f16-a157-4bdde9947df9"},{"name":"http://localhost:8000/extracurricularOfferings","id":"22287c10-e7ab-4360-a8f2-9b2fee413ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8000/extracurricularOfferings","description":"<p>Gets all the extra curricular programs offered by universities in the database.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["extracurricularOfferings"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"ddc49323-38f6-4773-bee1-2299aa58ce3b","name":"http://localhost:8000/extracurricularOfferings","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/extracurricularOfferings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 21:54:04 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"1327"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"excurricular_name\": \"AI Robotics Ethics Society\",\n        \"uni_name\": \"California Institute of Technology\"\n    },\n    {\n        \"excurricular_name\": \"Photography Society\",\n        \"uni_name\": \"Columbia University\"\n    },\n    {\n        \"excurricular_name\": \"Beekeeping Club\",\n        \"uni_name\": \"Cornell University\"\n    },\n    {\n        \"excurricular_name\": \"Crimson\",\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"excurricular_name\": \"Harvard College Culinary Club\",\n        \"uni_name\": \"Harvard University\"\n    },\n    {\n        \"excurricular_name\": \"Engineers\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"excurricular_name\": \"Laboratory for Chocolate Science\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    },\n    {\n        \"excurricular_name\": \"eSports, Princeton\",\n        \"uni_name\": \"Princeton University\"\n    },\n    {\n        \"excurricular_name\": \"Cardinal\",\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"excurricular_name\": \"Stanford Chess Club\",\n        \"uni_name\": \"Stanford University\"\n    },\n    {\n        \"excurricular_name\": \"AMS Billiards club\",\n        \"uni_name\": \"University of British Columbia\"\n    },\n    {\n        \"excurricular_name\": \"Birthday Wishes\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"excurricular_name\": \"Bouldering Club\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"excurricular_name\": \"Dinos\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"excurricular_name\": \"Maroons\",\n        \"uni_name\": \"University of Chicago\"\n    },\n    {\n        \"excurricular_name\": \"Keynotes A Cappella\",\n        \"uni_name\": \"University of Pennsylvania\"\n    },\n    {\n        \"excurricular_name\": \"Bulldogs\",\n        \"uni_name\": \"Yale University\"\n    }\n]"}],"_postman_id":"22287c10-e7ab-4360-a8f2-9b2fee413ae3"},{"name":"http://localhost:8000/staff","id":"27334fe6-6af6-4056-a60e-30ff7b0665bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Gets all staff on the database</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"7a339f91-e89a-46f6-a0e2-2bff61b64f7f","name":"http://localhost:8000/staff","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8000/staff"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Apr 2021 23:54:14 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.0"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"295"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"staff_id\": 1,\n        \"position\": \"Janitor\",\n        \"name\": \"Marianna Lu\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"staff_id\": 2,\n        \"position\": \"Librarian\",\n        \"name\": \"Dan Seward\",\n        \"uni_name\": \"University of Calgary\"\n    },\n    {\n        \"staff_id\": 3,\n        \"position\": \"Janitor\",\n        \"name\": \"Tarina Alden\",\n        \"uni_name\": \"Massachusetts Institute of Technology\"\n    }\n]"}],"_postman_id":"27334fe6-6af6-4056-a60e-30ff7b0665bf"}]}