-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware-development-life-cycle-work-item-schema.json
More file actions
88 lines (88 loc) · 2.73 KB
/
Copy pathsoftware-development-life-cycle-work-item-schema.json
File metadata and controls
88 lines (88 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/software-development-life-cycle/work-item",
"title": "Work Item",
"description": "A unit of work tracked throughout the software development life cycle, such as a user story, task, bug, or epic.",
"type": "object",
"required": ["id", "type", "title", "status"],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the work item."
},
"type": {
"type": "string",
"enum": ["epic", "story", "task", "bug", "spike", "subtask"],
"description": "The category of work item."
},
"title": {
"type": "string",
"description": "Short descriptive title of the work item."
},
"description": {
"type": "string",
"description": "Detailed description of the work to be done."
},
"status": {
"type": "string",
"enum": ["backlog", "ready", "in-progress", "in-review", "done", "cancelled"],
"description": "Current workflow state of the work item."
},
"priority": {
"type": "string",
"enum": ["critical", "high", "medium", "low"],
"description": "Priority level indicating urgency and importance."
},
"storyPoints": {
"type": "integer",
"minimum": 0,
"description": "Effort estimate in story points using Fibonacci scale."
},
"assignee": {
"type": "string",
"description": "Username or identifier of the team member assigned to this work item."
},
"reporter": {
"type": "string",
"description": "Username or identifier of the person who created this work item."
},
"sprint": {
"type": "string",
"description": "Identifier of the sprint this work item is assigned to."
},
"epic": {
"type": "string",
"description": "Identifier of the parent epic if this is a story or task."
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Classification labels attached to this work item."
},
"acceptanceCriteria": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of conditions that must be met for this work item to be considered done."
},
"created": {
"type": "string",
"format": "date-time",
"description": "Timestamp when this work item was created."
},
"updated": {
"type": "string",
"format": "date-time",
"description": "Timestamp when this work item was last updated."
},
"dueDate": {
"type": "string",
"format": "date",
"description": "Target completion date for this work item."
}
},
"additionalProperties": false
}