Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ GET https://lapras.com/public/<:share_id>.json
| e_score | number | 技術力スコア | `3.4` ※ scoreが計算不可能な場合は0が返ります。 |
| b_score | number | ビジネス力スコア | `3.1` |
| i_score | number | 影響力スコア | `2.2` |
| iconimage_url | string | ユーザーのアイコン画像のURL | `"https://placehold.co/300x300.jpg"` |
| qiita_articles | arrary | Qiita記事 | `[{"title": "hogehoge", "url": "https://qiita.com/hogehoge"}, "tags" ["foo"], "headlines": ["bar"], "stockers_count": 3, "updated_at": "020-07-26T08:10:11"]` |
| zenn_articles | array | Zenn記事 | `[{"title": "hoge", "url": "https://zenn.dev/hoge", "tags": ["foo"], "posted_at": "2022-10-03T08:36:43"}]` |
| blog_articles | array | ブログ記事 | `[{"title": "hoge", "url": "https://blog.com/hoge", "tags": ["foo"], "posted_at": "2022-10-03T08:36:43"}]` |
Expand All @@ -40,6 +41,7 @@ type Response = {
e_score: number; // 技術力スコア,
b_score: number; // ビジネス力スコア,
i_score: number; // 影響力スコア,
iconimage_url: string; // ユーザーのアイコン画像のURL,
qiita_articles: { // Qiita記事
title: string;
url: string;
Expand Down
5 changes: 5 additions & 0 deletions openapi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ components:
e_score: 3
b_score: 3
i_score: 3
iconimage_url: https://placehold.co/300x300.jpg
activities:
- date: '2019-08-24T14:15:22Z'
title: string
Expand Down Expand Up @@ -165,6 +166,10 @@ components:
maximum: 5
minimum: 0
description: LAPRAS Influence score.
iconimage_url:
type: string
format: uri
description: User's icon image URL.
activities:
type: array
items:
Expand Down