Skip to content

Instantly share code, notes, and snippets.

@afifabroory
Last active November 5, 2022 03:47
Show Gist options
  • Save afifabroory/4f92b241dc16637c5cd1eadf6b5882c4 to your computer and use it in GitHub Desktop.
Save afifabroory/4f92b241dc16637c5cd1eadf6b5882c4 to your computer and use it in GitHub Desktop.
Task Management JSON schema
{
"projects": [
{
"id": "20223-001",
"title": "Membuat Calculator",
"description_url": "https://raw.githubusercontent.com/iTech-Hackathon/Task-Management/main/docs/Specifications.md",
"tasks": [
{
"id": "001",
"title": "Membuat struktur HTML",
"description_url": "https://raw.githubusercontent.com/iTech-Hackathon/Task-Management/main/docs/Specifications.md"
},
{
"id": "002",
"title": "Membuat struktur CSS",
"description_url": "https://raw.githubusercontent.com/iTech-Hackathon/Task-Management/main/docs/Specifications.md"
},
{
"id": "003",
"title": "Membuat struktur JS",
"description_url": "https://raw.githubusercontent.com/iTech-Hackathon/Task-Management/main/docs/Specifications.md"
}
]
}
],
"users": [
{
"username": "afifabroory",
"role": "project_manager",
"completed_tasks": [
{
"project": "20223-001",
"task": "001"
}
]
},
{
"username": "blabla",
"role": "member",
"completed_tasks": [
{
"project": "20223-001",
"task": "001"
},
{
"project": "20223-001",
"task": "002"
},
{
"project": "20223-002",
"task": "001"
}
]
},
{
"username": "blabla",
"role": "member",
"completed_tasks": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment