-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisd.puml
More file actions
194 lines (166 loc) · 5.44 KB
/
Copy pathdisd.puml
File metadata and controls
194 lines (166 loc) · 5.44 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
@startuml disd-diagram
!theme plain
skinparam defaultFontName Monospaced
skinparam activity {
BackgroundColor #f5f5f5
BorderColor #333333
FontSize 12
}
skinparam note {
BackgroundColor #e3f2fd
BorderColor #1565c0
FontSize 10
}
skinparam swimlane {
BorderColor #555555
TitleFontSize 13
TitleFontStyle bold
}
title dISD Course — Full Object Flow\n(ADDIE phases as swimlanes; input/output pins declared on each action)
'══════════════════════════════════════════════════════════════════
' ANALYSIS
'══════════════════════════════════════════════════════════════════
|#dce8d4|Analysis|
start
:Analyze Needs;
note right
<b>in: CourseContext</b>
domainProblem : string
learnerRole : string
iteration : int
....
<b>out: NeedsAnalysisArtifact</b>
gapStatement : string
targetAudience : Audience
performanceObjectives : string[]
constraints : string[]
end note
'══════════════════════════════════════════════════════════════════
' DESIGN
'══════════════════════════════════════════════════════════════════
|#dce4f5|Design|
:Model the System;
note right
<b>in: NeedsAnalysisArtifact</b>
....
<b>out: SystemModel</b>
entities : Entity[]
relations : Relation[]
boundaries : Boundary[]
pumlSource : string
end note
:Map Learning Object Dependencies;
note right
<b>in: SystemModel</b>
....
<b>out: LearningObjectGraph</b>
nodes : LearningObjectNode[]
edges : Prerequisite[]
pumlSource : string
end note
:Specify Learning Objects;
note right
<b>in: LearningObjectGraph</b>
....
<b>out: LearningObjectSpec[]</b>
id : string
title : string
objectives : string[]
prerequisites : string[]
artifactSchema : string
estimatedDuration : int
end note
:Write Chai Specs;
note right
<b>in: LearningObjectSpec[]</b>
....
<b>out: ChaiSpec[]</b>
moduleId : string
specPath : string
assertedPins : PinAssertion[]
runner : "mocha"
end note
'══════════════════════════════════════════════════════════════════
' DEVELOPMENT
'══════════════════════════════════════════════════════════════════
|#f5e6d4|Development|
:Build Content Components;
note right
<b>in: LearningObjectSpec[], ChaiSpec[]</b>
....
<b>out: ContentComponent[]</b>
id : string
moduleId : string
format : "md" | "yaml" | "html"
version : semver
changelog : string[]
end note
'══════════════════════════════════════════════════════════════════
' IMPLEMENTATION
' Split: ISD decision first, technical encoding second.
'══════════════════════════════════════════════════════════════════
|#f5d4d4|Implementation|
:Specify Delivery;
note right
<b>in: ContentComponent[], ChaiSpec[]</b>
....
<b>out: DeliverySpec</b>
deliveryMechanism : "xapi" | "scorm" | "web"
sequencing : SequencingRule[]
learnerArtifactSchema : string
feedbackRouting : FeedbackRoute[]
evaluationTrigger : EvaluationTrigger
end note
:Encode Delivery as Pipeline;
note right
<b>in: DeliverySpec</b>
....
<b>out: PipelineConfig</b>
ciProvider : string
steps : PipelineStep[]
triggers : Trigger[]
yamlPath : string
end note
:Deploy;
note right
<b>in: PipelineConfig</b>
....
<b>out: DeployedCourse</b>
releaseTag : semver
endpoint : url
xapiEndpoint : url
deployedAt : datetime
end note
'══════════════════════════════════════════════════════════════════
' EVALUATION
'══════════════════════════════════════════════════════════════════
|#e8d4f5|Evaluation|
:Collect Telemetry;
note right
<b>in: DeployedCourse</b>
....
<b>out: EvaluationReport</b>
moduleId : string
learnerId : string
attemptId : string
artifacts : ArtifactResult[]
passRate : float
weakModules : string[]
specResults : object
end note
:Update Backlog;
note right
<b>in: EvaluationReport</b>
....
<b>out: BacklogDelta</b>
openIssues : Issue[]
closedIssues : Issue[]
nextIteration : int
trigger : "release" | "patch" | "redesign"
....
nextIteration == iteration + 1
BacklogDelta feeds CourseContext
on next iteration (loop to Analysis)
end note
stop
@enduml