generated from cdisc-org/COSAHackathonTemplate
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
1256 lines (1251 loc) · 40.5 KB
/
index.html
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="None" name="description"/>
<link href="https://cdisc-org.github.io/analysis-results-standard/" rel="canonical"/>
<link href="img/favicon.ico" rel="shortcut icon"/>
<title>Analysis Results Standard (ARS)</title>
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/font-awesome.min.css" rel="stylesheet"/>
<link href="css/base.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github.min.css" rel="stylesheet"/>
<script defer="" src="js/jquery-1.10.2.min.js"></script>
<script defer="" src="js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body class="homepage">
<div class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href=".">Analysis Results Standard (ARS)</a>
<!-- Expanded navigation -->
<div class="navbar-collapse collapse" id="navbar-collapse">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" data-target="#mkdocs_search_modal" data-toggle="modal" href="#">
<i class="fa fa-search"></i> Search
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3"><div class="navbar-light navbar-expand-md bs-sidebar hidden-print affix" role="complementary">
<div class="navbar-header">
<button class="navbar-toggler collapsed" data-target="#toc-collapse" data-toggle="collapse" title="Table of Contents" type="button">
<span class="fa fa-angle-down"></span>
</button>
</div>
<div class="navbar-collapse collapse card bg-secondary" id="toc-collapse">
<ul class="nav flex-column">
<li class="nav-item" data-level="1"><a class="nav-link" href="#analysis-results-standard-ars">Analysis Results Standard (ARS)</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="2"><a class="nav-link" href="#schema-diagram">Schema Diagram</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a class="nav-link" href="#classes">Classes</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a class="nav-link" href="#slots">Slots</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a class="nav-link" href="#enumerations">Enumerations</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a class="nav-link" href="#types">Types</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a class="nav-link" href="#subsets">Subsets</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div></div>
<div class="col-md-9" role="main">
<h1 id="analysis-results-standard-ars">Analysis Results Standard (ARS)</h1>
<p>Logical model to support both the prospective specification of analyses and the fully contextualized representation of the results of the analyses.</p>
<p>URI: https://www.cdisc.org/ars/1-0
Name: ars_ldm</p>
<h2 id="schema-diagram">Schema Diagram</h2>
<pre class="mermaid"><code>erDiagram
ReportingEvent {
string id
integer version
string name
string description
string label
}
Output {
string id
integer version
string name
string description
string label
}
AnalysisOutputProgrammingCode {
string context
string code
}
AnalysisOutputCodeParameter {
stringList value
string name
string description
string label
}
DocumentReference {
}
PageRef {
PageRefTypeEnum refType
string label
stringList pageNames
integerList pageNumbers
integer firstPage
integer lastPage
}
ReferenceDocument {
string id
uri location
string name
string description
string label
}
AnalysisOutputCategory {
string id
string label
}
AnalysisOutputCategorization {
string id
string label
}
OrderedDisplay {
integer order
}
OutputDisplay {
string id
integer version
string displayTitle
string name
string description
string label
}
DisplaySection {
DisplaySectionTypeEnum sectionType
}
OrderedDisplaySubSection {
integer order
}
DisplaySubSection {
string id
string text
}
OutputFile {
uri location
string style
string name
string description
string label
}
ExtensibleTerminologyTerm {
string controlledTerm
}
SponsorTerm {
string id
string submissionValue
string description
}
GlobalDisplaySection {
DisplaySectionTypeEnum sectionType
}
Analysis {
string id
integer version
string dataset
string variable
string name
string description
string label
}
OperationResult {
string rawValue
string formattedValue
}
ResultGroup {
string groupValue
}
Group {
string id
string name
string description
string label
integer level
integer order
}
CompoundGroupExpression {
ExpressionLogicalOperatorEnum logicalOperator
}
SubClause {
integer level
integer order
string subClauseId
}
WhereClauseCompoundExpression {
ExpressionLogicalOperatorEnum logicalOperator
}
WhereClauseCondition {
string dataset
string variable
ConditionComparatorEnum comparator
stringList value
}
GroupingFactor {
string id
string groupingDataset
string groupingVariable
boolean dataDriven
string name
string description
string label
}
Operation {
string id
integer order
string resultPattern
string name
string description
string label
}
ReferencedOperationRelationship {
string id
string description
}
ReferencedAnalysisOperation {
}
AnalysisMethod {
string id
string name
string description
string label
}
AnalysisProgrammingCodeTemplate {
string context
string code
}
TemplateCodeParameter {
string valueSource
stringList value
string name
string description
string label
}
OrderedGroupingFactor {
integer order
boolean resultsByGroup
}
DataSubset {
string id
string name
string description
string label
integer level
integer order
}
CompoundSubsetExpression {
ExpressionLogicalOperatorEnum logicalOperator
}
AnalysisSet {
string id
string name
string description
string label
integer level
integer order
}
CompoundSetExpression {
ExpressionLogicalOperatorEnum logicalOperator
}
TerminologyExtension {
string id
ExtensibleTerminologyEnum enumeration
}
ListOfContents {
string name
string description
string label
}
NestedList {
}
OrderedListItem {
integer level
integer order
string name
string description
string label
}
ReportingEvent ||--|| ListOfContents : "mainListOfContents"
ReportingEvent ||--}o ListOfContents : "otherListsOfContents"
ReportingEvent ||--}o ReferenceDocument : "referenceDocuments"
ReportingEvent ||--}o TerminologyExtension : "terminologyExtensions"
ReportingEvent ||--}o AnalysisOutputCategorization : "analysisOutputCategorizations"
ReportingEvent ||--}o AnalysisSet : "analysisSets"
ReportingEvent ||--}o DataSubset : "dataSubsets"
ReportingEvent ||--}o GroupingFactor : "analysisGroupings"
ReportingEvent ||--}o AnalysisMethod : "methods"
ReportingEvent ||--}o Analysis : "analyses"
ReportingEvent ||--}o GlobalDisplaySection : "globalDisplaySections"
ReportingEvent ||--}o Output : "outputs"
Output ||--}o OutputFile : "fileSpecifications"
Output ||--}| OrderedDisplay : "displays"
Output ||--}o AnalysisOutputCategory : "categoryIds"
Output ||--}o DocumentReference : "documentRefs"
Output ||--|o AnalysisOutputProgrammingCode : "programmingCode"
AnalysisOutputProgrammingCode ||--|o DocumentReference : "documentRef"
AnalysisOutputProgrammingCode ||--}o AnalysisOutputCodeParameter : "parameters"
DocumentReference ||--|| ReferenceDocument : "referenceDocumentId"
DocumentReference ||--}o PageRef : "pageRefs"
AnalysisOutputCategory ||--}o AnalysisOutputCategorization : "subCategorizations"
AnalysisOutputCategorization ||--}| AnalysisOutputCategory : "categories"
OrderedDisplay ||--|| OutputDisplay : "display"
OutputDisplay ||--}o DisplaySection : "displaySections"
DisplaySection ||--}o OrderedDisplaySubSection : "orderedSubSections"
OrderedDisplaySubSection ||--|o DisplaySubSection : "subSection"
OrderedDisplaySubSection ||--|o DisplaySubSection : "subSectionId"
OutputFile ||--|o ExtensibleTerminologyTerm : "fileType"
ExtensibleTerminologyTerm ||--|o SponsorTerm : "sponsorTermId"
GlobalDisplaySection ||--}o DisplaySubSection : "subSections"
Analysis ||--|| ExtensibleTerminologyTerm : "reason"
Analysis ||--|| ExtensibleTerminologyTerm : "purpose"
Analysis ||--}o DocumentReference : "documentRefs"
Analysis ||--}o AnalysisOutputCategory : "categoryIds"
Analysis ||--|o AnalysisSet : "analysisSetId"
Analysis ||--|o DataSubset : "dataSubsetId"
Analysis ||--}o OrderedGroupingFactor : "orderedGroupings"
Analysis ||--|| AnalysisMethod : "methodId"
Analysis ||--}o ReferencedAnalysisOperation : "referencedAnalysisOperations"
Analysis ||--|o AnalysisOutputProgrammingCode : "programmingCode"
Analysis ||--}o OperationResult : "results"
OperationResult ||--|| Operation : "operationId"
OperationResult ||--}o ResultGroup : "resultGroups"
ResultGroup ||--|| GroupingFactor : "groupingId"
ResultGroup ||--|o Group : "groupId"
Group ||--|o WhereClauseCondition : "condition"
Group ||--|o CompoundGroupExpression : "compoundExpression"
CompoundGroupExpression ||--}o SubClause : "whereClauses"
SubClause ||--|o WhereClauseCondition : "condition"
SubClause ||--|o WhereClauseCompoundExpression : "compoundExpression"
WhereClauseCompoundExpression ||--}o SubClause : "whereClauses"
GroupingFactor ||--}o Group : "groups"
Operation ||--}o ReferencedOperationRelationship : "referencedOperationRelationships"
ReferencedOperationRelationship ||--|| ExtensibleTerminologyTerm : "referencedOperationRole"
ReferencedOperationRelationship ||--|| Operation : "operationId"
ReferencedOperationRelationship ||--|o Analysis : "analysisId"
ReferencedAnalysisOperation ||--|| ReferencedOperationRelationship : "referencedOperationRelationshipId"
ReferencedAnalysisOperation ||--|| Analysis : "analysisId"
AnalysisMethod ||--}o DocumentReference : "documentRefs"
AnalysisMethod ||--}| Operation : "operations"
AnalysisMethod ||--|o AnalysisProgrammingCodeTemplate : "codeTemplate"
AnalysisProgrammingCodeTemplate ||--|o DocumentReference : "documentRef"
AnalysisProgrammingCodeTemplate ||--}o TemplateCodeParameter : "parameters"
OrderedGroupingFactor ||--|| GroupingFactor : "groupingId"
DataSubset ||--|o WhereClauseCondition : "condition"
DataSubset ||--|o CompoundSubsetExpression : "compoundExpression"
CompoundSubsetExpression ||--}o SubClause : "whereClauses"
AnalysisSet ||--|o WhereClauseCondition : "condition"
AnalysisSet ||--|o CompoundSetExpression : "compoundExpression"
CompoundSetExpression ||--}o SubClause : "whereClauses"
TerminologyExtension ||--}| SponsorTerm : "sponsorTerms"
ListOfContents ||--|| NestedList : "contentsList"
NestedList ||--}o OrderedListItem : "listItems"
OrderedListItem ||--|o Analysis : "analysisId"
OrderedListItem ||--|o Output : "outputId"
OrderedListItem ||--|o NestedList : "sublist"
</code></pre>
<h2 id="classes">Classes</h2>
<p><em>Classes provide templates for organizing data. Data objects instantiate classes in the schema. Each class has a set of slots (aka fields, attributes) that are applicable to it. See <a href="https://linkml.io/linkml/schemas/models.html#classes">LinkML documentation</a> for more information.</em></p>
<table>
<thead>
<tr>
<th>Class</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="NamedObject/">NamedObject</a></td>
<td>An object with a name</td>
</tr>
<tr>
<td><a href="ReportingEvent/">ReportingEvent</a></td>
<td>A set of analyses and outputs created to meet a specific reporting requiremen...</td>
</tr>
<tr>
<td><a href="ListOfContents/">ListOfContents</a></td>
<td>A structured list of analyses and outputs included in the reporting event</td>
</tr>
<tr>
<td><a href="NestedList/">NestedList</a></td>
<td>A list of items (analyses or outputs) that may be organized within sub-lists</td>
</tr>
<tr>
<td><a href="LevelOrder/">LevelOrder</a></td>
<td>An abstract class containing attributes used to position class instances with...</td>
</tr>
<tr>
<td><a href="OrderedListItem/">OrderedListItem</a></td>
<td>An item (analysis, output or sub-list) ordered relative to other items within...</td>
</tr>
<tr>
<td><a href="ReferenceDocument/">ReferenceDocument</a></td>
<td>An external document containing supporting documentation or programming code</td>
</tr>
<tr>
<td><a href="TerminologyExtension/">TerminologyExtension</a></td>
<td>An extensible set of controlled terminology that has been extended with at le...</td>
</tr>
<tr>
<td><a href="SponsorTerm/">SponsorTerm</a></td>
<td>A sponsor-defined term that is included in an extensible set of controlled te...</td>
</tr>
<tr>
<td><a href="ExtensibleTerminologyTerm/">ExtensibleTerminologyTerm</a></td>
<td>The term used for an attribute whose terminology is extensible</td>
</tr>
<tr>
<td><a href="AnalysisOutputCategorization/">AnalysisOutputCategorization</a></td>
<td>A set of related implementer-defined categories that can be used to categoriz...</td>
</tr>
<tr>
<td><a href="AnalysisOutputCategory/">AnalysisOutputCategory</a></td>
<td>An implementer-defined category of analyses/outputs, which may include one or...</td>
</tr>
<tr>
<td><a href="WhereClause/">WhereClause</a></td>
<td>Selection criteria defined as either a simple condition ([variable] [comparat...</td>
</tr>
<tr>
<td><a href="WhereClauseCondition/">WhereClauseCondition</a></td>
<td>A simple selection criterion exressed as [dataset]</td>
</tr>
<tr>
<td><a href="ReferencedWhereClause/">ReferencedWhereClause</a></td>
<td>An abstract class indicating an identified where clause (i</td>
</tr>
<tr>
<td><a href="SubClause/">SubClause</a></td>
<td>An abstract class containing all attributes that may be specified for a sub-c...</td>
</tr>
<tr>
<td><a href="WhereClauseCompoundExpression/">WhereClauseCompoundExpression</a></td>
<td>An abstract class representing a compound expression consisting of either two...</td>
</tr>
<tr>
<td><a href="AnalysisSet/">AnalysisSet</a></td>
<td>A set of subjects whose data are to be included in the main analyses</td>
</tr>
<tr>
<td><a href="ReferencedAnalysisSet/">ReferencedAnalysisSet</a></td>
<td>An <code>AnalysisSet</code> referenced by identifier (<code>subClauseId</code>) as the sub-clause o...</td>
</tr>
<tr>
<td><a href="CompoundSetExpression/">CompoundSetExpression</a></td>
<td>A compound expression consisting of either two or more sub-clauses combined w...</td>
</tr>
<tr>
<td><a href="DataSubset/">DataSubset</a></td>
<td>A subset of data identified by selection criteria for inclusion in the analys...</td>
</tr>
<tr>
<td><a href="ReferencedDataSubset/">ReferencedDataSubset</a></td>
<td>A <code>DataSubset</code> referenced by identifier (<code>subClauseId</code>) as the sub-clause of ...</td>
</tr>
<tr>
<td><a href="CompoundSubsetExpression/">CompoundSubsetExpression</a></td>
<td>A compound expression consisting of either two or more sub-clauses combined w...</td>
</tr>
<tr>
<td><a href="GroupingFactor/">GroupingFactor</a></td>
<td>A factor used to subdivide either the subject population or data records in a...</td>
</tr>
<tr>
<td><a href="Group/">Group</a></td>
<td>A subdivision of the subject population or analysis dataset record set based ...</td>
</tr>
<tr>
<td><a href="ReferencedGroup/">ReferencedGroup</a></td>
<td>A <code>Group</code> referenced by identifier (<code>subClauseId</code>) as the sub-clause of a com...</td>
</tr>
<tr>
<td><a href="CompoundGroupExpression/">CompoundGroupExpression</a></td>
<td>A compound expression consisting of either two or more sub-clauses combined w...</td>
</tr>
<tr>
<td><a href="AnalysisMethod/">AnalysisMethod</a></td>
<td>A set of one or more statistical operations</td>
</tr>
<tr>
<td><a href="DocumentReference/">DocumentReference</a></td>
<td>A reference to an external document</td>
</tr>
<tr>
<td><a href="PageRef/">PageRef</a></td>
<td>A reference to a specific part of a document as indicated by a list of one or...</td>
</tr>
<tr>
<td><a href="PageNumberListRef/">PageNumberListRef</a></td>
<td>One or more individual pages in the reference document, referenced by page nu...</td>
</tr>
<tr>
<td><a href="PageNumberRangeRef/">PageNumberRangeRef</a></td>
<td>A range of pages in the reference document, indicated by the first and last p...</td>
</tr>
<tr>
<td><a href="PageNameRef/">PageNameRef</a></td>
<td>One or more pages in the reference document, referenced by named destination</td>
</tr>
<tr>
<td><a href="Operation/">Operation</a></td>
<td>A statistical operation that produces a single analysis result value as part ...</td>
</tr>
<tr>
<td><a href="ReferencedOperationRelationship/">ReferencedOperationRelationship</a></td>
<td>A reference to a statistical operation whose results are used in the calculat...</td>
</tr>
<tr>
<td><a href="OperationRole/">OperationRole</a></td>
<td>The role that the referenced operation's result plays in the calculation of t...</td>
</tr>
<tr>
<td><a href="SponsorOperationRole/">SponsorOperationRole</a></td>
<td>The sponsor-defined role that the referenced operation's result plays in the ...</td>
</tr>
<tr>
<td><a href="AnalysisProgrammingCodeTemplate/">AnalysisProgrammingCodeTemplate</a></td>
<td>Programming statements and/or a reference to a used as a template for creatio...</td>
</tr>
<tr>
<td><a href="CodeParameter/">CodeParameter</a></td>
<td>A replacement parameter whose value is substituted in template programming co...</td>
</tr>
<tr>
<td><a href="TemplateCodeParameter/">TemplateCodeParameter</a></td>
<td>A replacement parameter whose value is substituted in template programming co...</td>
</tr>
<tr>
<td><a href="Analysis/">Analysis</a></td>
<td>An analysis that is designed to meet a requirement of the reporting event</td>
</tr>
<tr>
<td><a href="AnalysisReason/">AnalysisReason</a></td>
<td>The rationale for performing this analysis</td>
</tr>
<tr>
<td><a href="SponsorAnalysisReason/">SponsorAnalysisReason</a></td>
<td>The sponsor-defined rationale for performing this analysis</td>
</tr>
<tr>
<td><a href="AnalysisPurpose/">AnalysisPurpose</a></td>
<td>The purpose of the analysis within the body of evidence (e</td>
</tr>
<tr>
<td><a href="SponsorAnalysisPurpose/">SponsorAnalysisPurpose</a></td>
<td>The sponsor-defined purpose of the analysis within the body of evidence (e</td>
</tr>
<tr>
<td><a href="OrderedGroupingFactor/">OrderedGroupingFactor</a></td>
<td>A reference to a defined factor by which subjects or data records are grouped...</td>
</tr>
<tr>
<td><a href="ReferencedAnalysisOperation/">ReferencedAnalysisOperation</a></td>
<td>An indication of the analysis that contains results of a referenced operation</td>
</tr>
<tr>
<td><a href="AnalysisOutputProgrammingCode/">AnalysisOutputProgrammingCode</a></td>
<td>Programming statements and/or a reference to the program used to perform a sp...</td>
</tr>
<tr>
<td><a href="AnalysisOutputCodeParameter/">AnalysisOutputCodeParameter</a></td>
<td>A parameter whose value is used in programming code for a specific analysis o...</td>
</tr>
<tr>
<td><a href="OperationResult/">OperationResult</a></td>
<td>The result of an analysis method operation performed on a subdivision of subj...</td>
</tr>
<tr>
<td><a href="ResultGroup/">ResultGroup</a></td>
<td>For the specified grouping factor, an indication of the specific group of sub...</td>
</tr>
<tr>
<td><a href="GlobalDisplaySection/">GlobalDisplaySection</a></td>
<td>A global definition for part of a tabular display containing one or more piec...</td>
</tr>
<tr>
<td><a href="DisplaySubSection/">DisplaySubSection</a></td>
<td>An occurrence of a display section containing text</td>
</tr>
<tr>
<td><a href="Output/">Output</a></td>
<td>A report of results and their evaluation based on planned analyses performed ...</td>
</tr>
<tr>
<td><a href="OutputFile/">OutputFile</a></td>
<td>A file containing analysis output displays</td>
</tr>
<tr>
<td><a href="OutputFileType/">OutputFileType</a></td>
<td>The file format of the file containing output from analyses</td>
</tr>
<tr>
<td><a href="SponsorOutputFileType/">SponsorOutputFileType</a></td>
<td>The sponsor-defined file format of the file containing output from analyses</td>
</tr>
<tr>
<td><a href="OrderedDisplay/">OrderedDisplay</a></td>
<td>A display ordered with respect to other displays in an analysis output</td>
</tr>
<tr>
<td><a href="OutputDisplay/">OutputDisplay</a></td>
<td>A tabular representation of the results of one or more analyses</td>
</tr>
<tr>
<td><a href="DisplaySection/">DisplaySection</a></td>
<td>A part of a tabular display containing one or more pieces of informational te...</td>
</tr>
<tr>
<td><a href="OrderedDisplaySubSection/">OrderedDisplaySubSection</a></td>
<td>A single subsection ordered with respect to other subsections in the same sec...</td>
</tr>
<tr>
<td><a href="OrderedSubSection/">OrderedSubSection</a></td>
<td>A subsection ordered with respect to other subsections of the same type</td>
</tr>
<tr>
<td><a href="OrderedSubSectionRef/">OrderedSubSectionRef</a></td>
<td>A reference to a subsection defined either globally or in another display sec...</td>
</tr>
</tbody>
</table>
<h2 id="slots">Slots</h2>
<p><em>Slots (aka attributes, fields, columns, properties) can be associated with classes to specify what fields instances of that class can have. Slots operate the same way as “fields” in traditional object languages and the same ways as “columns” in spreadsheets and relational databases. See LinkML documentation <a href="https://linkml.io/linkml/schemas/models.html#slots">here</a> and <a href="https://linkml.io/linkml/schemas/slots.html">here</a> for more information.</em></p>
<table>
<thead>
<tr>
<th>Slot</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="name/">name</a></td>
<td>The name for the instance of the class</td>
</tr>
<tr>
<td><a href="description/">description</a></td>
<td>A textual description of the instance of the class</td>
</tr>
<tr>
<td><a href="label/">label</a></td>
<td>A short informative description that may be used for display</td>
</tr>
<tr>
<td><a href="id/">id</a></td>
<td>The assigned identifying value for the instance of the class</td>
</tr>
<tr>
<td><a href="version/">version</a></td>
<td>An ordinal indicating the version of the identified instance of the class</td>
</tr>
<tr>
<td><a href="mainListOfContents/">mainListOfContents</a></td>
<td>The main list of the analyses and outputs defined for the reporting event</td>
</tr>
<tr>
<td><a href="otherListsOfContents/">otherListsOfContents</a></td>
<td>Other lists of the analyses and outputs defined for the reporting event</td>
</tr>
<tr>
<td><a href="contentsList/">contentsList</a></td>
<td>A structured list of the analyses and outputs defined for the reporting event</td>
</tr>
<tr>
<td><a href="referenceDocuments/">referenceDocuments</a></td>
<td>External documents containing information referenced for the reporting event</td>
</tr>
<tr>
<td><a href="terminologyExtensions/">terminologyExtensions</a></td>
<td>Any sponsor-defined extensions to extensible terminology</td>
</tr>
<tr>
<td><a href="analysisOutputCategorizations/">analysisOutputCategorizations</a></td>
<td>Sets of related implementer-defined categories that can be used to categorize...</td>
</tr>
<tr>
<td><a href="analysisSets/">analysisSets</a></td>
<td>The analysis sets (subject populations) defined for the reporting event</td>
</tr>
<tr>
<td><a href="dataSubsets/">dataSubsets</a></td>
<td>Subsets of data identified by selection criteria for inclusion in analysis de...</td>
</tr>
<tr>
<td><a href="analysisGroupings/">analysisGroupings</a></td>
<td>Characteristics used to subdivide the subject population (e</td>
</tr>
<tr>
<td><a href="methods/">methods</a></td>
<td>The defined methods used to analyze any analysis variable</td>
</tr>
<tr>
<td><a href="analyses/">analyses</a></td>
<td>The analyses defined for the reporting event</td>
</tr>
<tr>
<td><a href="globalDisplaySections/">globalDisplaySections</a></td>
<td>Display section specifications that may be applied to any display</td>
</tr>
<tr>
<td><a href="outputs/">outputs</a></td>
<td>The outputs defined for the reporting event</td>
</tr>
<tr>
<td><a href="listItems/">listItems</a></td>
<td>Items in the list</td>
</tr>
<tr>
<td><a href="level/">level</a></td>
<td>The level of the entry within a hierarchical structure</td>
</tr>
<tr>
<td><a href="order/">order</a></td>
<td>The ordinal of the instance with respect to other instances</td>
</tr>
<tr>
<td><a href="sublist/">sublist</a></td>
<td>A sub-list of items (analyses or outputs) that may be further organized withi...</td>
</tr>
<tr>
<td><a href="analysisId/">analysisId</a></td>
<td>The identifier of the referenced analysis</td>
</tr>
<tr>
<td><a href="outputId/">outputId</a></td>
<td>The identifier of the referenced output</td>
</tr>
<tr>
<td><a href="location/">location</a></td>
<td>A path (relative or absolute) indicating the location of the file</td>
</tr>
<tr>
<td><a href="enumeration/">enumeration</a></td>
<td>The name of the extensible enumeration</td>
</tr>
<tr>
<td><a href="sponsorTerms/">sponsorTerms</a></td>
<td>The sponsor-defined terms added to the extensible terminology</td>
</tr>
<tr>
<td><a href="submissionValue/">submissionValue</a></td>
<td>The specific value expected for submissions</td>
</tr>
<tr>
<td><a href="controlledTerm/">controlledTerm</a></td>
<td>One of the permissible values from the referenced enumeration</td>
</tr>
<tr>
<td><a href="sponsorTermId/">sponsorTermId</a></td>
<td>The identifier of the referenced sponsor term</td>
</tr>
<tr>
<td><a href="categories/">categories</a></td>
<td>Implementer-defined categories of analyses/outputs, each of which may include...</td>
</tr>
<tr>
<td><a href="subCategorizations/">subCategorizations</a></td>
<td>Sets of related implementer-defined sub-categories that can be used to catego...</td>
</tr>
<tr>
<td><a href="condition/">condition</a></td>
<td>A simple selection criterion exressed as [dataset]</td>
</tr>
<tr>
<td><a href="compoundExpression/">compoundExpression</a></td>
<td>A compound expression that combines or negates where clauses</td>
</tr>
<tr>
<td><a href="dataset/">dataset</a></td>
<td>The name of the analysis dataset</td>
</tr>
<tr>
<td><a href="variable/">variable</a></td>
<td>The name of the variable</td>
</tr>
<tr>
<td><a href="comparator/">comparator</a></td>
<td>Comparison operator indicating how the variable is compared to the value(s)</td>
</tr>
<tr>
<td><a href="value/">value</a></td>
<td>The prespecified value or values</td>
</tr>
<tr>
<td><a href="subClauseId/">subClauseId</a></td>
<td>The identifier of the analysis set, data subset or group referenced in the co...</td>
</tr>
<tr>
<td><a href="logicalOperator/">logicalOperator</a></td>
<td>The boolean operator that is used to combine (AND, OR) or negate (NOT) the wh...</td>
</tr>
<tr>
<td><a href="whereClauses/">whereClauses</a></td>
<td>A list of one or more where clauses (selection criteria) to be combined or ne...</td>
</tr>
<tr>
<td><a href="groupingDataset/">groupingDataset</a></td>
<td>For groupings based on a single variable, a reference to the dataset containi...</td>
</tr>
<tr>
<td><a href="groupingVariable/">groupingVariable</a></td>
<td>For groupings based on a single variable, a reference to the dataset variable...</td>
</tr>
<tr>
<td><a href="dataDriven/">dataDriven</a></td>
<td>Indicates whether the groups defined by the grouping are prespecified (false)...</td>
</tr>
<tr>
<td><a href="groups/">groups</a></td>
<td>The pre-specified groups within the grouping</td>
</tr>
<tr>
<td><a href="documentRefs/">documentRefs</a></td>
<td>References to external documents containing additional information</td>
</tr>
<tr>
<td><a href="operations/">operations</a></td>
<td>The calculations performed for the method</td>
</tr>
<tr>
<td><a href="codeTemplate/">codeTemplate</a></td>
<td>Template programming statements used to perform the statistical operations fo...</td>
</tr>
<tr>
<td><a href="referenceDocumentId/">referenceDocumentId</a></td>
<td>The identifier of the referenced document</td>
</tr>
<tr>
<td><a href="pageRefs/">pageRefs</a></td>
<td>A list of references to specific parts of a document, which may be referenced...</td>
</tr>
<tr>
<td><a href="refType/">refType</a></td>
<td>The type of reference for page references</td>
</tr>
<tr>
<td><a href="pageNames/">pageNames</a></td>
<td>One or more named document references which each correspond with a page</td>
</tr>
<tr>
<td><a href="pageNumbers/">pageNumbers</a></td>
<td>One or more page numbers</td>
</tr>
<tr>
<td><a href="firstPage/">firstPage</a></td>
<td>The page number of the first page in a range of pages</td>
</tr>
<tr>
<td><a href="lastPage/">lastPage</a></td>
<td>The page number of the last page in a range of pages</td>
</tr>
<tr>
<td><a href="referencedOperationRelationships/">referencedOperationRelationships</a></td>
<td>Relationships to other operations indicating how the result of the referenced...</td>
</tr>
<tr>
<td><a href="resultPattern/">resultPattern</a></td>
<td>The default pattern or format to apply to the result for display</td>
</tr>
<tr>
<td><a href="referencedOperationRole/">referencedOperationRole</a></td>
<td>The role that the referenced operation's result plays in the calculation of t...</td>
</tr>
<tr>
<td><a href="operationId/">operationId</a></td>
<td>The identifier of the referenced operation</td>
</tr>
<tr>
<td><a href="context/">context</a></td>
<td>The name and version of the computer language used for the actual programming...</td>
</tr>
<tr>
<td><a href="code/">code</a></td>
<td>Programming statements used to perform the specific analysis</td>
</tr>
<tr>
<td><a href="documentRef/">documentRef</a></td>
<td>A reference to the document containing programming code</td>
</tr>
<tr>
<td><a href="parameters/">parameters</a></td>
<td>Replacement parameters that are referenced in the programming code or program...</td>
</tr>
<tr>
<td><a href="valueSource/">valueSource</a></td>
<td>A reference to the prespecified source of the value for the parameter</td>
</tr>
<tr>
<td><a href="reason/">reason</a></td>
<td>The rationale for performing this analysis</td>
</tr>
<tr>
<td><a href="purpose/">purpose</a></td>
<td>The purpose of the analysis within the body of evidence (e</td>
</tr>
<tr>
<td><a href="categoryIds/">categoryIds</a></td>
<td>References to any implementer-defined categories that apply to the analysis o...</td>
</tr>
<tr>
<td><a href="analysisSetId/">analysisSetId</a></td>
<td>The identifier of the referenced analysis set</td>
</tr>
<tr>
<td><a href="dataSubsetId/">dataSubsetId</a></td>
<td>The identifier of the referenced data subset</td>
</tr>
<tr>
<td><a href="orderedGroupings/">orderedGroupings</a></td>
<td>An ordered list of grouping factors used in the analysis</td>
</tr>
<tr>
<td><a href="methodId/">methodId</a></td>
<td>A reference to the set of one or more statistical operations performed for th...</td>
</tr>
<tr>
<td><a href="referencedAnalysisOperations/">referencedAnalysisOperations</a></td>
<td>Indications of which analysis contains the results for each referenced operat...</td>
</tr>
<tr>
<td><a href="programmingCode/">programmingCode</a></td>
<td>Programming statements used to perform the specific analysis or create the sp...</td>
</tr>
<tr>
<td><a href="results/">results</a></td>
<td>The results of the analysis</td>
</tr>
<tr>
<td><a href="groupingId/">groupingId</a></td>
<td>The identifier of the referenced subject or data grouping factor</td>
</tr>
<tr>
<td><a href="resultsByGroup/">resultsByGroup</a></td>
<td>Indicates whether a result is expected for each group in the grouping</td>
</tr>
<tr>
<td><a href="referencedOperationRelationshipId/">referencedOperationRelationshipId</a></td>
<td>The identifier of the defined referenced operation relationship</td>
</tr>
<tr>
<td><a href="resultGroups/">resultGroups</a></td>
<td>The group values associated with the result</td>
</tr>
<tr>
<td><a href="rawValue/">rawValue</a></td>
<td>The raw result value (e</td>
</tr>
<tr>
<td><a href="formattedValue/">formattedValue</a></td>
<td>The result value formatted for display according to the resultPattern</td>
</tr>
<tr>
<td><a href="groupId/">groupId</a></td>
<td>The identifier of a referenced predefined group within a grouping</td>
</tr>
<tr>
<td><a href="groupValue/">groupValue</a></td>
<td>The data value used as a group within a data-driven grouping</td>
</tr>
<tr>
<td><a href="sectionType/">sectionType</a></td>
<td>The type of display section that contains one or more pieces of informational...</td>
</tr>
<tr>
<td><a href="subSections/">subSections</a></td>
<td>A list of defined pieces of information text that may be displayed in display...</td>
</tr>
<tr>
<td><a href="text/">text</a></td>
<td>The text to be displayed in the display section</td>
</tr>
<tr>
<td><a href="fileSpecifications/">fileSpecifications</a></td>
<td>Specifications of output files</td>
</tr>
<tr>
<td><a href="displays/">displays</a></td>
<td>An ordered list of the displays included in the output</td>