Skip to content

Commit bf501b9

Browse files
committed
フィードバックフィールドの名称を変更し、関連する説明を更新
1 parent 2967a3a commit bf501b9

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ http://localhost:3000/api
3131
"jobRole": ["フロントエンドエンジニア", "バックエンドエンジニア", "フルスタックエンジニア", "DevOpsエンジニア", "データエンジニア", "モバイルエンジニア", "その他"],
3232
"jobRoleOther": "string",
3333
"eventRating": 1 | 2 | 3 | 4 | 5,
34-
"childcareServiceFeedback": "string"
34+
"feedback": "string"
3535
}
3636
```
3737

@@ -41,7 +41,7 @@ http://localhost:3000/api
4141
- `jobRole`: 複数選択可能な配列形式。参加者の職種を全て選択(複数の職種を兼務している場合を考慮)
4242
- `jobRoleOther`: `jobRole`に「その他」が含まれている場合に具体的な職種を入力(最大100文字)
4343
- `eventRating`: 1-5の整数(1=非常に不満、5=非常に満足)
44-
- `childcareServiceFeedback`: 任意のフィードバック(最大1000文字)
44+
- `feedback`: 任意のフィードバック(最大1000文字)
4545

4646
**レスポンス**
4747

@@ -100,7 +100,7 @@ http://localhost:3000/api
100100
"5": 19
101101
}
102102
},
103-
"childcareServiceFeedback": [
103+
"feedback": [
104104
{
105105
"id": "string",
106106
"feedback": "string",
@@ -130,7 +130,7 @@ interface Survey {
130130
)[];
131131
jobRoleOther?: string;
132132
eventRating: 1 | 2 | 3 | 4 | 5;
133-
childcareServiceFeedback: string;
133+
feedback: string;
134134
createdAt: Date;
135135
updatedAt: Date;
136136
}
@@ -147,7 +147,7 @@ interface Survey {
147147
### オプショナルフィールド
148148

149149
- `jobRoleOther`: 任意(`jobRole`に「その他」が含まれている場合は必須、最大100文字)
150-
- `childcareServiceFeedback`: 任意(最大1000文字)
150+
- `feedback`: 任意(最大1000文字)
151151

152152
## HTTPステータスコード
153153

@@ -156,3 +156,10 @@ interface Survey {
156156
- `400 Bad Request`: リクエストが不正
157157
- `422 Unprocessable Entity`: バリデーションエラー
158158
- `500 Internal Server Error`: サーバーエラー
159+
160+
## 開発環境
161+
162+
- **フロントエンド**: React
163+
- **バックエンド**: .NET 9 Azure Functions
164+
- **データベース**: Azure Cosmos DB (NoSQL)
165+

0 commit comments

Comments
 (0)