일정 관리 서버 만들기 설계 (API 명세서, ERD 작성)
API 명세서 DTO 목록ScheduleSaveRequestDto{ "content": string, “author”: string, “password”:string,} ScheduleUpdateRequestDto{ "content": string, “author”: string, “password”:string,} ScheduleResponseDto{ "id": Long, "content": string, “author”: string,} 성공Status Code 201 Created실패404 NotFoundScheduleListResponseDto[ { "id": Long, "content": string, “author”: string }, { "id": Long, "content": string..