This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscrum_team_instance.json
More file actions
73 lines (73 loc) · 3.8 KB
/
scrum_team_instance.json
File metadata and controls
73 lines (73 loc) · 3.8 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
{
"team": {
"id": "T-001",
"name": "Atlas Scrum",
"members": [
{ "id": "U-PO", "displayName": "Riley (PO)", "roles": ["ProductOwner"], "visibility": { "profile": "public" }, "capabilities": ["roadmapping"] },
{ "id": "U-SM", "displayName": "Kai (SM)", "roles": ["ScrumMaster"], "visibility": { "profile": "team" }, "capabilities": ["facilitation"] },
{ "id": "U-DEV1", "displayName": "Ava Dev", "roles": ["Developer"], "visibility": { "profile": "team" }, "capabilities": ["frontend","devops"] },
{ "id": "U-QA1", "displayName": "Noah QA", "roles": ["QA"], "visibility": { "profile": "team" }, "capabilities": ["automation"] },
{ "id": "U-STK", "displayName": "Pat Stakeholder", "roles": ["Stakeholder"], "visibility": { "profile": "public" }, "capabilities": [] }
],
"artifacts": {
"productBacklog": [
{
"id": "PB-101",
"title": "As a user, I can sign in with email",
"type": "Story",
"description": "Support email+password auth",
"acceptanceCriteria": ["Given valid credentials… Then user sees dashboard"],
"visibility": { "level": "public" },
"priority": 1,
"status": "Ready",
"storyPoints": 5,
"owner": "U-PO",
"linkedItems": []
}
],
"sprintBacklog": [
{
"id": "PB-101",
"title": "As a user, I can sign in with email",
"type": "Story",
"description": "Support email+password auth",
"acceptanceCriteria": ["Given valid credentials… Then user sees dashboard"],
"visibility": { "level": "team", "exceptions": [{ "memberId": "U-STK", "grant": "view" }] },
"priority": 1,
"status": "InProgress",
"storyPoints": 5,
"owner": "U-DEV1",
"linkedItems": [],
"sprintId": "S-12",
"commitment": true,
"remainingHours": 12
}
],
"increments": [
{ "id": "INC-12", "sprintId": "S-11", "commitHash": "abc1234", "notes": "Auth foundation", "visibility": { "level": "public" } }
],
"definitions": {
"definitionOfDone": ["All AC pass", "Automated tests >= 80%", "Security scan clean"],
"definitionOfReady": ["AC written", "Points sized", "Dependencies mapped"]
}
},
"events": [
{ "id": "E-PLN-12", "type": "SprintPlanning", "sprintId": "S-12", "timeboxMins": 120, "agenda": ["Goal","Select PBIs","Plan"], "attendees": ["U-PO","U-SM","U-DEV1","U-QA1"], "visibility": { "level": "team" } },
{ "id": "E-DS-12-01", "type": "DailyScrum", "sprintId": "S-12", "timeboxMins": 15, "agenda": ["Yesterday","Today","Risks"], "attendees": ["U-SM","U-DEV1","U-QA1"], "visibility": { "level": "team" } },
{ "id": "E-REV-12", "type": "SprintReview", "sprintId": "S-12", "timeboxMins": 60, "agenda": ["Demo","Feedback"], "attendees": ["U-PO","U-SM","U-DEV1","U-QA1","U-STK"], "visibility": { "level": "public" } }
],
"policies": {
"visibilityRules": [
{ "target": "BacklogItem", "defaultLevel": "team", "overrides": [{ "role": "Stakeholder", "level": "public" }] },
{ "target": "Event", "defaultLevel": "team", "overrides": [{ "role": "Stakeholder", "level": "public" }] }
],
"permissionMatrix": [
{ "role": "ProductOwner", "allow": ["Backlog.Create","Backlog.Prioritize","Backlog.Reorder","Item.Accept","Item.Reject","Event.Schedule"] },
{ "role": "ScrumMaster", "allow": ["Event.Facilitate","Sprint.Plan","Team.Invite","Team.Remove"] },
{ "role": "Developer", "allow": ["Sprint.Commit","Sprint.UpdateRemaining","Increment.Create","Item.Comment.Team","Item.Move"] },
{ "role": "QA", "allow": ["Item.Test","Item.Comment.Team"] },
{ "role": "Stakeholder", "allow": ["Item.Comment.Public"] }
]
}
}
}