プロフィールのエクスポート#
テナントに登録されているコワーカーのプロフィール情報を一括でダウンロードできます。
エクスポート#
テナント管理のプラン画面でプロフィールのエクスポートを実行することができます。
ヒント
プロフィールのエクスポートは、テナントオーナーのロールを持つコワーカーが実行できます。
プロフィールのエクスポートで[ダウンロードする]ボタンをクリックすると、全コワーカーのプロフィール情報をJSON形式のテキストファイルに出力しダウンロードします。
出力ファイル#
フォーマット
JSON形式
UTF-8(BOMなし)
改行は
LF
ファイル名は
profiles.json
項目
順番 |
項目名 |
プロフィール属性 |
備考 |
---|---|---|---|
0 |
coworkers |
以下の項目を持つJSONオブジェクト配列です。 |
|
1 |
tenant_id |
テナントID |
テナントを識別するIDです。 |
2 |
coworker_id |
コワーカーID |
コワーカーを識別するIDです。 |
3 |
name |
姓名 |
|
4 |
name_yomi |
姓名(よみ) |
|
5 |
nickname |
ニックネーム |
|
6 |
department |
所属部署 |
|
7 |
occupation |
職種 |
|
8 |
job_title |
役職 |
|
9 |
employee_number |
社員番号 |
|
10 |
phone_number |
電話番号 |
|
11 |
work_location |
勤務地 |
|
12 |
address_state |
居住地 |
|
13 |
join_date |
入社日 |
YYYY-MM-DD |
14 |
メールアドレス |
||
15 |
birthday |
生年月日 |
YYYY-MM-DD |
16 |
bio |
自己紹介 |
自己紹介の改行は |
17 |
skills |
スキル |
スキル名( |
18 |
languages |
言語 |
言語名( |
19 |
tags |
タグ |
タグ名の配列で出力されます。後述のサンプルをご覧ください。 |
20 |
todo |
やりたいこと |
|
21 |
certificates |
資格 |
資格名( |
22 |
websites |
Webサイト |
Webサイト名( |
23 |
interests |
興味・関心 |
|
24 |
linkages |
SNSリンク |
サービス名( |
25 |
communities |
コミュニティ活動 |
|
26 |
no_interests |
興味がないこと |
未登録など値がない項目の値は null
または空の配列となります。
以下は値を複数持つ項目の出力例です。
スキルのサンプル
"skills":[
{"name":"JavaScript","level":5},
{"name":"Elasticsearch","level":4},
{"name":"TypeScript","level":2}
]
言語のサンプル
"languages":[
{"name":"日本語","level":1},
{"name":"英語","level":1}
]
タグのサンプル
"tags":["釣り","チーズ","映画","ラーメン"]
資格のサンプル
"certificates": [
{
"name": "AWS Certified Solutions Architect Professional",
"type": "AWS",
"badge": "https://images.example.jp/example/badges/aws/sap.png"
},
{
"name": "AWS Certified Machine Learning Specialty",
"type": "AWS",
"badge": "https://images.example.jp/example/badges/aws/ml.png"
},
{
"name": "Google Cloud Certified Professional Machine Learning Engineer",
"type": "Google Cloud",
"badge": "https://images.example.jp/example/badges/google-cloud/professional-machine-learning-engineer.png"
}
]
Webサイトのサンプル
"websites":[
{"label":"Developers IO","url":"https://dev.classmethod.jp"},
{"label":"Proflly","url":"https://classmethod.jp/m/proflly"}
]
SNSリンクのサンプル
"linkages":[
{"service":"twitter","url":"https://twitter.com/example"},
{"service":"facebook","url":"https://www.facebook.com/example"},
{"service":"github","url":"https://github.com/example"}
]