Code Monkey home page Code Monkey logo

skills-api's Introduction

skills-api

Fake JSON Server using my-json-server

Entities (SQL-Model)

Categories

CREATE TABLE categories (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  name TEXT NOT NULL,
);

Skills

CREATE TABLE skills (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  name TEXT NOT NULL,
  description TEXT NOT NULL,
  icon_url TEXT,
  category_id INTEGER NOT NULL,
  FOREIGN KEY(categoryId) REFERENCES categories(id)
);

Table representation

Categories

id name
1 Programming Languages
2 Databases

Skills

id name description icon_url category_id
1 Java Java is a general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. https://upload.wikimedia.org/wikipedia/en/3/30/Java_programming_language_logo.svg 1
2 JavaScript JavaScript, often abbreviated as JS, is a high-level, interpreted programming language. It is a language which is also characterized as dynamic, weakly typed, prototype-based and multi-paradigm. https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png 1
3 SQL SQL is a domain-specific language used in programming and designed for managing data held in a relational database management system, or for stream processing in a relational data stream management system. https://upload.wikimedia.org/wikipedia/commons/8/87/Sql_data_base_with_logo.png 2

Available endpoints

API BASE URL: https://my-json-server.typicode.com/zenor27/skills-api

Categories

Method URL Description
GET /categories Get all categories
GET /categories/1 Get category by id 1

Skills

Method URL Description
GET /skills Get all skills
GET /skills/1 Get skill by id 1

skills-api's People

Contributors

zenor27 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.