-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware-development-lifecycle-sprint-schema.json
More file actions
78 lines (78 loc) · 2.34 KB
/
Copy pathsoftware-development-lifecycle-sprint-schema.json
File metadata and controls
78 lines (78 loc) · 2.34 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/software-development-lifecycle/sprint",
"title": "Sprint",
"description": "A time-boxed iteration in agile development methodology, containing a defined set of work items to be completed and delivered.",
"type": "object",
"required": ["id", "name", "startDate", "endDate", "status"],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the sprint."
},
"name": {
"type": "string",
"description": "Human-readable sprint name, e.g., 'Sprint 42' or '2026-Q2-Sprint-3'."
},
"goal": {
"type": "string",
"description": "High-level objective that the team commits to achieving during this sprint."
},
"startDate": {
"type": "string",
"format": "date",
"description": "Date when the sprint begins."
},
"endDate": {
"type": "string",
"format": "date",
"description": "Date when the sprint ends."
},
"status": {
"type": "string",
"enum": ["future", "active", "completed", "cancelled"],
"description": "Current state of the sprint."
},
"capacity": {
"type": "integer",
"minimum": 0,
"description": "Total story points the team has capacity to complete in this sprint."
},
"velocity": {
"type": "integer",
"minimum": 0,
"description": "Actual story points completed at sprint close."
},
"workItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of work item identifiers committed to this sprint."
},
"team": {
"type": "string",
"description": "Identifier of the team executing this sprint."
},
"board": {
"type": "string",
"description": "Identifier of the board this sprint belongs to."
},
"completedPoints": {
"type": "integer",
"minimum": 0,
"description": "Story points completed so far during the sprint."
},
"created": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the sprint was created."
},
"modified": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the sprint was last modified."
}
},
"additionalProperties": false
}