@extends('layouts.app') @section('title', 'JSON Import') @section('content')
JSON 파일로 프로젝트, 작업, 이슈를 일괄 등록합니다.
{
"project": {
"name": "프로젝트명 (필수)",
"description": "설명",
"status": "active|completed|on_hold",
"start_date": "2025-01-01",
"end_date": "2025-03-31"
},
"tasks": [
{
"title": "작업 제목 (필수)",
"description": "작업 설명",
"status": "todo|in_progress|done",
"priority": "low|medium|high",
"due_date": "2025-01-15",
"issues": [
{
"title": "이슈 제목 (필수)",
"description": "이슈 설명",
"type": "bug|feature|improvement",
"status": "open|in_progress|resolved|closed"
}
]
}
]
}
{
"tasks": [
{
"title": "추가할 작업",
"priority": "high",
"issues": [...]
}
]
}
active - 진행중completed - 완료on_hold - 보류todo - 예정in_progress - 진행중done - 완료low - 낮음medium - 보통high - 높음bug - 버그feature - 기능improvement - 개선