forked from hannamark/ctrp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathws.xsd
1493 lines (1438 loc) · 49.2 KB
/
ws.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="gov.nih.nci.pa.webservices.types"
xmlns:tns="gov.nih.nci.pa.webservices.types" elementFormDefault="qualified"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.1"
xmlns:annox="http://annox.dev.java.net" xmlns:ja="http://annox.dev.java.net/org.codehaus.jackson.annotate"
xmlns:po="gov.nih.nci.po.webservices.types.trimmed"
xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd
gov.nih.nci.po.webservices.types.trimmed po.xsd
http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
<annotation>
<appinfo>
<jaxb:schemaBindings>
<jaxb:package name="gov.nih.nci.pa.webservices.types" />
</jaxb:schemaBindings>
</appinfo>
</annotation>
<import namespace="gov.nih.nci.po.webservices.types.trimmed"
schemaLocation="po.xsd" />
<element name="clinicalTrialsDotGovTrialID">
<annotation>
<documentation>The format for the ClinicalTrials.gov registry number
is NCT followed by an 8-digit number, e.g.: NCT00000419.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<pattern value="NCT[0-9]{1,47}" />
<maxLength value="50" />
</restriction>
</simpleType>
</element>
<element name="TrialRegistrationConfirmation" type="tns:TrialRegistrationConfirmation">
<annotation>
<documentation>A snapshot of basic trial information that serves as a
confirmation of a successful trial registration, update, or
amendment.
</documentation>
</annotation>
</element>
<complexType name="TrialRegistrationConfirmation">
<annotation>
<documentation>A snapshot of basic trial information that serves as a
confirmation of a successful trial registration, update, or
amendment.
</documentation>
</annotation>
<sequence>
<element name="paTrialID" type="long">
<annotation>
<documentation>PA's internal trial identifier, which is a numerical
value. Immutable.
</documentation>
</annotation>
</element>
<element name="nciTrialID">
<annotation>
<documentation>NCI ID assigned to each newly registered trial. It
follows a specific format (e.g. NCI-2014-00672) and stays
immutable
with a trial.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<pattern value="NCI-[0-9]{4}-[0-9]{1,8}" />
</restriction>
</simpleType>
</element>
</sequence>
</complexType>
<simpleType name="TrialCategory">
<annotation>
<documentation>List of trial categories.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="National" />
<enumeration value="Externally Peer-Reviewed" />
<enumeration value="Institutional" />
</restriction>
</simpleType>
<simpleType name="TrialPhase">
<annotation>
<documentation>List of trial phases.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="0" />
<enumeration value="I" />
<enumeration value="I/II" />
<enumeration value="II" />
<enumeration value="II/III" />
<enumeration value="III" />
<enumeration value="IV" />
<enumeration value="NA" />
</restriction>
</simpleType>
<simpleType name="PrimaryPurpose">
<annotation>
<documentation>List of trial primary purposes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Treatment" />
<enumeration value="Prevention" />
<enumeration value="Supportive Care" />
<enumeration value="Screening" />
<enumeration value="Diagnostic" />
<enumeration value="Health Services Research" />
<enumeration value="Basic Science" />
<enumeration value="Other" />
</restriction>
</simpleType>
<simpleType name="SecondaryPurpose">
<annotation>
<documentation>List of trial secondary purposes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Ancillary-Correlative" />
<enumeration value="Other" />
</restriction>
</simpleType>
<simpleType name="AccrualDiseaseTerminology">
<annotation>
<documentation>List of accrual disease terminologies.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="SDC" />
<enumeration value="ICD10" />
<enumeration value="ICD9" />
<enumeration value="ICD-O-3" />
</restriction>
</simpleType>
<simpleType name="NonInterventionalTrialType">
<annotation>
<documentation>Types of Non-Interventional Trials.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Observational" />
<enumeration value="Ancillary-Correlative" />
</restriction>
</simpleType>
<simpleType name="StudyModelCode">
<annotation>
<documentation>Study model codes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Cohort" />
<enumeration value="Case-control" />
<enumeration value="Case-only" />
<enumeration value="Case-crossover" />
<enumeration value="Ecologic or community studies" />
<enumeration value="Family-based" />
<enumeration value="Other" />
</restriction>
</simpleType>
<simpleType name="TimePerspectiveCode">
<annotation>
<documentation>Time perspective codes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Prospective" />
<enumeration value="Retrospective" />
<enumeration value="Cross-sectional" />
<enumeration value="Other" />
</restriction>
</simpleType>
<simpleType name="ResponsiblePartyType">
<annotation>
<documentation>Responsible party type.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Sponsor" />
<enumeration value="Principal Investigator" />
<enumeration value="Sponsor-Investigator" />
</restriction>
</simpleType>
<simpleType name="TrialStatusCode">
<annotation>
<documentation>Trial status codes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="In Review" />
<enumeration value="Approved" />
<enumeration value="Active" />
<enumeration value="Enrolling by Invitation" />
<enumeration value="Closed to Accrual" />
<enumeration value="Closed to Accrual and Intervention" />
<enumeration value="Temporarily Closed to Accrual" />
<enumeration value="Temporarily Closed to Accrual and Intervention" />
<enumeration value="Withdrawn" />
<enumeration value="Administratively Complete" />
<enumeration value="Complete" />
</restriction>
</simpleType>
<simpleType name="RecruitmentStatus">
<annotation>
<documentation>Participating site recruitment status codes.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="In Review" />
<enumeration value="Approved" />
<enumeration value="Active" />
<enumeration value="Enrolling by Invitation" />
<enumeration value="Closed to Accrual" />
<enumeration value="Closed to Accrual and Intervention" />
<enumeration value="Temporarily Closed to Accrual" />
<enumeration value="Temporarily Closed to Accrual and Intervention" />
<enumeration value="Withdrawn" />
<enumeration value="Administratively Complete" />
<enumeration value="Completed" />
</restriction>
</simpleType>
<complexType name="ResponsibleParty">
<annotation>
<documentation>Provides a trial's responsible party details. Only
applicable to trials that
require uploads to ClinicalTrials.gov.
</documentation>
</annotation>
<sequence>
<element name="type" type="tns:ResponsiblePartyType">
<annotation>
<documentation>
Type of Responsible Party of the trial. Please note
that this value governs the use of the next three elements.
</documentation>
</annotation>
</element>
<element name="investigator" minOccurs="0" type="tns:Person">
<annotation>
<documentation>
This element can be used when responsible party
type
is
Sponsor-Investigator; use it to specify a
Responsible Party
Investigator, which can be different from the Trial
Principal
Investigator. If omitted, Responsible Party
Investigator will
default to the Trial
Principal
Investigator.
For other responsible
party types this
element will be ignored and
Responsible Party
Investigator will ALWAYS
default to the Trial
Principal
Investigator.
</documentation>
</annotation>
</element>
<element name="investigatorTitle" type="string" minOccurs="0">
<annotation>
<documentation>
Title of the Responsible Party Investigator. This
element is not applicable and thus should be omitted
when
responsible party
type is Sponsor. Use it only when responsible
party is either Principal Investigator or
Sponsor-Investigator. If
omitted, title will default to "Principal Investigator".
</documentation>
</annotation>
</element>
<element name="investigatorAffiliation" minOccurs="0"
type="tns:Organization">
<annotation>
<documentation>
An Organization that Responsible Party Investigator
is affiliated
with. Use this element
only when responsible party
type is Principal Investigator. If omitted, affiliation will
default to Trial Sponsor organization.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<complexType name="OrganizationOrPersonID">
<annotation>
<documentation>
Every Organization or Person in CTRP normally can be
uniquely identified
by either a numeric PO ID (preferred)
or a CTEP
ID. In most cases when you need to refer to an existing Organization
or Person, you can use either type of identifier.
</documentation>
</annotation>
<choice>
<element name="poID" type="long" />
<element name="ctepID">
<simpleType>
<restriction base="string">
<minLength value="1" />
</restriction>
</simpleType>
</element>
</choice>
</complexType>
<complexType name="Organization">
<annotation>
<documentation>Represents information about an Organization that
plays a role (Lead Organization, Sponsor, etc) on a
trial. Every
organization ultimately must exist in NCI PO (Curation) Tool before using this service. If it
does not,
it has to be created in PO before a trial can be
registered. If you know PO ID or CTEP ID of an organization that
already exists, please use that. It is required that you exercise NCI PO Web
Services separately to search for the organization you need
and
obtain a PO ID prior to invoking CTRP Trial Registration or
Participating Site services.
</documentation>
</annotation>
<sequence>
<choice>
<element name="existingOrganization" type="tns:OrganizationOrPersonID" />
<element name="newOrganization" type="po:Organization">
<annotation>
<documentation>
DO NOT use this element. Organization must exist prior to invoking the service. See above for explanation.
</documentation>
</annotation>
</element>
</choice>
</sequence>
</complexType>
<complexType name="Person">
<annotation>
<documentation>Represents information about a Person that
plays a role
(Principal Investigator, etc) on a
trial. Every
Person ultimately must
exist in NCI PO (Curation) Tool. If it
does not,
it has to be created
in PO before a trial can be
registered. If you know PO ID or CTEP ID
of a Person that
already exists, please use that in order
to avoid
creation of
duplicates. It is required that you exercise
NCI PO Web
Services separately to search for the Person you need
and
obtain a PO ID prior to invoking CTRP Trial Registration or
Participating Site services.
</documentation>
</annotation>
<sequence>
<choice>
<element name="existingPerson" type="tns:OrganizationOrPersonID" />
<element name="newPerson" type="po:Person">
<annotation>
<documentation>
DO NOT use this element. Person must exist prior to invoking the service. See above for explanation.
</documentation>
</annotation>
</element>
</choice>
</sequence>
</complexType>
<simpleType name="OtherDescription">
<annotation>
<documentation>Whenever a trial attribute, such as Primary Purpose,
is set to 'Other', often an additional description is required. This
XML type defines such a description.
</documentation>
</annotation>
<restriction base="string">
<maxLength value="200" />
<minLength value="1" />
</restriction>
</simpleType>
<complexType name="TrialDateType">
<annotation>
<documentation>Defines a type of a trial date that is either actual
or anticipated. 'N/A' is only applicable to Primary Completion Date
and only on DCP trials.
</documentation>
</annotation>
<simpleContent>
<extension base="date">
<attribute name="type" use="required">
<simpleType>
<restriction base="string">
<enumeration value="Actual" />
<enumeration value="Anticipated" />
<enumeration value="N/A" />
</restriction>
</simpleType>
</attribute>
</extension>
</simpleContent>
</complexType>
<complexType name="TrialDocument">
<annotation>
<documentation>A Trial Document. CTRP accepts most standard document
types. For additional information about what document types are
accepted, please refer to the Help section.
</documentation>
</annotation>
<simpleContent>
<extension base="base64Binary">
<attribute name="filename" use="required" type="string" />
</extension>
</simpleContent>
</complexType>
<complexType name="InterventionalTrialDesign">
<annotation>
<documentation>Design details of an Interventional trial.
</documentation>
</annotation>
<sequence>
<element name="secondaryPurpose" type="tns:SecondaryPurpose"
minOccurs="0" />
<element name="secondaryPurposeOtherDescription" type="tns:OtherDescription"
minOccurs="0">
<annotation>
<documentation>If Trial Secondary Purpose is 'Other', please
provide
an additional description of the trial's purpose using this
element.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<simpleType name="HolderType">
<annotation>
<documentation>Type of IND/IDE holder.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Investigator" />
<enumeration value="Organization" />
<enumeration value="Industry" />
<enumeration value="NIH" />
<enumeration value="NCI" />
</restriction>
</simpleType>
<simpleType name="GrantorCode">
<annotation>
<documentation>Organization that holds the IND/IDE
approval.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="CDER" />
<enumeration value="CBER" />
<enumeration value="CDRH" />
</restriction>
</simpleType>
<simpleType name="NihInstitutionCode">
<annotation>
<documentation>NIH Institutions Codes
</documentation>
</annotation>
<restriction base="string">
<!-- * National Eye Institute. -->
<enumeration value="NEI" />
<!-- National Heart, Lung, and Blood Institute. -->
<enumeration value="NHLBI" />
<!-- National Human Genome Research Institute. -->
<enumeration value="NHGRI" />
<!-- National Institute on Aging. -->
<enumeration value="NIA" />
<!-- National Institute on Alcohol Abuse and Alcoholism. -->
<enumeration value="NIAAA" />
<!-- National Institute of Allergy and Infectious Diseases. -->
<enumeration value="NIAID" />
<!-- National Institute of Arthritis and Musculoskeletal and Skin Diseases. -->
<enumeration value="NIAMS" />
<!-- National Institute of Biomedical Imaging and Bioengineering. -->
<enumeration value="NIBIB" />
<!-- Eunice Kennedy Shriver National Institute of Child Health and Human
Development. -->
<enumeration value="NICHD" />
<!-- <enumeration value="National Institute on Deafness and Other Communication
Disorders. -->
<enumeration value="NIDCD" />
<!-- National Institute of Dental and Craniofacial Research. -->
<enumeration value="NIDCR" />
<!-- National Institute of Diabetes and Digestive and Kidney Diseases. -->
<enumeration value="NIDDK" />
<!-- National Institute on Drug Abuse. -->
<enumeration value="NIDA" />
<!-- National Institute of Environmental Health Sciences. -->
<enumeration value="NIEHS" />
<!-- National Institute of General Medical Sciences. -->
<enumeration value="NIGMS" />
<!-- National Institute of Mental Health. -->
<enumeration value="NIMH" />
<!-- National Institute of Neurological Disorders and Stroke. -->
<enumeration value="NINDS" />
<!-- National Institute of Nursing Research. -->
<enumeration value="NINR" />
<!-- National Library of Medicine. -->
<enumeration value="NLM" />
<!-- Center for Information Technology. -->
<enumeration value="CIT" />
<!-- Center for Scientific Review. -->
<enumeration value="CSR" />
<!-- John E. Fogarty International Center for Advanced Study in the Health
Sciences. -->
<enumeration value="FIC" />
<!-- National Center for Complementary and Alternative Medicine. -->
<enumeration value="NCCAM" />
<!-- National Center on Minority Health and Health Disparities. -->
<enumeration value="NCMHD" />
<!-- National Center for Research Resources (NCRR). -->
<enumeration value="NCRR" />
<!-- NIH Clinical Center. -->
<enumeration value="CC" />
<!-- Office of the Director. -->
<enumeration value="OD" />
</restriction>
</simpleType>
<simpleType name="NciDivisionProgramCode">
<annotation>
<documentation>NCI Division Program Codes.
</documentation>
</annotation>
<restriction base="string">
<!-- CCR-Center for Cancer Research. -->
<enumeration value="CCR" />
<!-- Center for Cancer Training / Cancer Training Branch. -->
<enumeration value="CCT/CTB" />
<!-- CIP-Cancer Imaging Program. -->
<enumeration value="CIP" />
<!-- CDP-Cancer Diagnosis Program. -->
<enumeration value="CDP" />
<!-- CTEP-Cancer Therapy Evaluation Program. -->
<enumeration value="CTEP" />
<!-- DCB-Division of Cancer Biology. -->
<enumeration value="DCB" />
<!-- DCCPS-Division of Cancer Control and Population Sciences. -->
<enumeration value="DCCPS" />
<!-- DCEG-Division of Cancer Epidemiology and Genetics. -->
<enumeration value="DCEG" />
<!-- DCP-Division of Cancer Prevention. -->
<enumeration value="DCP" />
<!-- DEA-Division of Extramural Activities. -->
<enumeration value="DEA" />
<!-- DTP-Developmental Therapeutics Program. -->
<enumeration value="DTP" />
<!-- OD-Office of the Director, NCI, NIH. -->
<enumeration value="OD" />
<!-- OSB/SPOREs -Organ Systems Branch (OSB) /Specialized Programs of Research
Excellence (SPOREs). -->
<enumeration value="OSB/SPOREs" />
<!-- TRP-Translational Research Program. -->
<enumeration value="TRP" />
<!-- RRP-Radiation Research Program. -->
<enumeration value="RRP" />
<!--* . -->
<enumeration value="N/A" />
</restriction>
</simpleType>
<simpleType name="ExpandedAccessType">
<annotation>
<documentation>If the study includes expanded access, select the
access type indicating availability of an experimental drug or
device outside any clinical trial protocol.
</documentation>
</annotation>
<restriction base="string">
<enumeration value="Available" />
<enumeration value="No longer available" />
<enumeration value="Temporarily not available" />
<enumeration value="Approved for marketing" />
</restriction>
</simpleType>
<complexType name="IND_IDE">
<annotation>
<documentation>Captures information about an Investigational New Drug
(IND)
application or an Investigational
Device Exemption (IDE) used on
the trial.
</documentation>
</annotation>
<sequence>
<element name="number" type="string">
<annotation>
<documentation>Enter the number assigned to an Investigational New
Drug Application (IND) or Investigational Device Exemption (IDE).
You can enter the IND number in many formats. For example, for a
biologics (BB) IND that contains the number 1234, you can type
BB1234, 1234, or BB_1234.
</documentation>
</annotation>
</element>
<element name="grantor" type="tns:GrantorCode">
<annotation>
<documentation>Select the organization that holds the IND/IDE
approval. Typically, CDER or CBER.
</documentation>
</annotation>
</element>
<element name="holderType" type="tns:HolderType">
<annotation>
<documentation>Select the type of IND/IDE holder.
</documentation>
</annotation>
</element>
<element name="nihInstitution" type="tns:NihInstitutionCode"
minOccurs="0">
<annotation>
<documentation>If the holder type is NIH, select the NIH
Institution.
</documentation>
</annotation>
</element>
<element name="nciDivisionProgramCode" type="tns:NciDivisionProgramCode"
minOccurs="0">
<annotation>
<documentation>If the holder type is NCI, select the NCI
Division
Program Code.
</documentation>
</annotation>
</element>
<element name="expandedAccess" type="boolean">
<annotation>
<documentation>Indicates whether or not an experimental drug or
device is available outside any clinical trial protocol.
</documentation>
</annotation>
</element>
<element name="expandedAccessType" type="tns:ExpandedAccessType"
minOccurs="0">
<annotation>
<documentation>If the study includes expanded access, select the
access type indicating availability of an experimental drug or
device outside any clinical trial protocol.
</documentation>
</annotation>
</element>
<element name="exempt" type="boolean">
<annotation>
<documentation>Indicates whether or not the trial is associated
with the U.S.
FDA and does not require IRB approval.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<complexType name="Grant">
<annotation>
<documentation>Captures information about a grant that a trial is
funded with.
</documentation>
</annotation>
<sequence>
<element name="fundingMechanism">
<annotation>
<documentation>Select the NIH funding mechanism unique identifier,
a 3-character code used to identify areas of extramural research
activity applied to funding mechanisms.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<pattern value="[A-Z0-9]{3}" />
</restriction>
</simpleType>
</element>
<element name="nihInstitutionCode">
<annotation>
<documentation>Select the two-letter code identifying the first
major-level subdivision, the organization that supports an NIH
grant, contract, or inter-agency agreement. The support may be
financial or administrative.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<pattern value="[A-Z]{2}" />
</restriction>
</simpleType>
</element>
<element name="serialNumber">
<annotation>
<documentation>Enter the number generally assigned sequentially to
a series within an Institute, Center, or Division.
</documentation>
</annotation>
<simpleType>
<restriction base="string">
<pattern value="[0-9]{1,200}" />
</restriction>
</simpleType>
</element>
<element name="nciDivisionProgramCode" type="tns:NciDivisionProgramCode">
<annotation>
<documentation>Select the NCI organizational unit that provides
funding for the study.
</documentation>
</annotation>
</element>
<element name="fundingPercentage" minOccurs="0" type="float" />
</sequence>
</complexType>
<complexType name="NonInterventionalTrialDesign">
<annotation>
<documentation>Design details of a Non-Interventional trial.
</documentation>
</annotation>
<sequence>
<element name="trialType" type="tns:NonInterventionalTrialType" />
<element name="studyModelCode" type="tns:StudyModelCode" />
<element name="studyModelCodeOtherDescription" type="tns:OtherDescription" minOccurs="0">
<annotation>
<documentation>If Trial Study Model Code is 'Other', please provide
an additional description using this
element.
</documentation>
</annotation>
</element>
<element name="timePerspectiveCode" type="tns:TimePerspectiveCode" />
<element name="timePerspectiveCodeOtherDescription" type="tns:OtherDescription" minOccurs="0">
<annotation>
<documentation>If Time Perspective Code is 'Other', please provide
an additional description using this
element.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<complexType name="RegulatoryInformation">
<annotation>
<documentation>Trial Regulatory Information. Required only for trials
that require uploads into ClinicalTrials.gov.
</documentation>
</annotation>
<sequence>
<element name="country" type="po:CountryISO-3166-1-alpha-3-Code">
<annotation>
<documentation>Specify the country in which the Trial Oversight
Authority is located. Use country's 3-digit ISO code.
</documentation>
</annotation>
</element>
<element name="authorityName" type="string">
<annotation>
<documentation>Select the name of each national or international
health organization with authority over the protocol. Authority
name must be known to CTRP. The list of authorities known by CTRP
is quite large and volatile;
please contact CTRP Analysts or CTRO
Office for details. Failure to find a match in CTRP by name will
cause the entire trial registration to fail.
</documentation>
</annotation>
</element>
<element name="fdaRegulated" type="boolean">
<annotation>
<documentation>Indicate whether this trial includes an intervention
subject to US Food and Drug Administration regulation under
section 351 of the Public Health Service Act or any of the
following sections of the Federal Food, Drug and Cosmetic Act:
505, 510(k), 515, 52.
</documentation>
</annotation>
</element>
<element name="section801" type="boolean">
<annotation>
<documentation>Indicate whether this is an 'applicable clinical
trial' as defined in US Public Law 110-85, Title VIII, Section
801.
</documentation>
</annotation>
</element>
<element name="delayedPosting" type="boolean">
<annotation>
<documentation>Indicate whether this trial includes a device NOT
previously approved or cleared by the US FDA for any use, as
specified in US Public Law 110-85, Title VIII, Section 801.
</documentation>
</annotation>
</element>
<element name="dataMonitoringCommitteeAppointed" type="boolean">
<annotation>
<documentation>Indicate whether a data monitoring committee has
been appointed for this study.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<element name="CompleteTrialRegistration" type="tns:CompleteTrialRegistration">
<annotation>
<documentation>A request to register a Complete trial in CTRP.
</documentation>
</annotation>
</element>
<element name="CompleteTrialAmendment" type="tns:CompleteTrialAmendment">
<annotation>
<documentation>A request to amend a Complete trial in CTRP.
</documentation>
</annotation>
</element>
<element name="CompleteTrialUpdate" type="tns:CompleteTrialUpdate">
<annotation>
<documentation>A request to update a Complete trial in CTRP. An
update permits trial owners to change a limited set
of data element
of the trial. Most of the elements are optional; if you omit an
element, corresponding trial data will remain unchanged.
</documentation>
</annotation>
</element>
<element name="AbbreviatedTrialUpdate" type="tns:AbbreviatedTrialUpdate">
<annotation>
<documentation>A request to update an Abbreviated trial in CTRP. An
update permits trial owners to change a very limited set
of data
element
of an Abbreviated trial. Most of the elements are optional;
if you
omit an
element, corresponding trial data will remain
unchanged.
</documentation>
</annotation>
</element>
<element name="ParticipatingSiteUpdate" type="tns:ParticipatingSiteUpdate">
<annotation>
<documentation>Represents an update to a participating site. Since an
update to a site cannot change the organization, this type excludes
the organization element.
</documentation>
</annotation>
</element>
<element name="ParticipatingSite" type="tns:ParticipatingSite">
<annotation>
<documentation>Represents a new or existing participating site on a
trial: this
includes organization information.
</documentation>
</annotation>
</element>
<element name="sites">
<annotation>
<documentation>List of participating sites.
</documentation>
</annotation>
<complexType>
<sequence>
<element name="site" type="tns:ParticipatingSite" minOccurs="0"
maxOccurs="unbounded" />
</sequence>
</complexType>
</element>
<complexType name="AbbreviatedTrialUpdate" final="#all"
block="#all">
<annotation>
<documentation>A request to update an Abbreviated trial in CTRP. An
update permits trial owners to change a very limited set
of data
element
of an Abbreviated trial. Most of the elements are optional;
if you
omit an
element, corresponding trial data will remain
unchanged.
</documentation>
</annotation>
<sequence>
<element ref="tns:clinicalTrialsDotGovTrialID" minOccurs="0">
<annotation>
<documentation>
If the trial does not currently specify a
ClinicalTrials.Gov ID
(a.k.a NCT ID), you can provide one during
the update.
If the trial does have a ClinicalTrials.Gov ID already,
your update
will not be allowed to change it; an attempt to do so
will be ignored by CTRP.
</documentation>
</annotation>
</element>
<element name="irbApprovalDocument" type="tns:TrialDocument"
minOccurs="0">
<annotation>
<documentation>To ensure successful registration, upload a IRB
Approval document
document.
</documentation>
</annotation>
</element>
<element name="informedConsentDocument" type="tns:TrialDocument"
minOccurs="0">
<annotation>
<documentation>If the Protocol document does not include the
Informed Consent and/or participating sites, upload the Informed
Consent document.
</documentation>
</annotation>
</element>
<element name="otherDocument" type="tns:TrialDocument"
minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Any other trial-related document.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
<complexType name="CompleteTrialUpdate" final="#all" block="#all">
<annotation>
<documentation>A request to update a Complete trial in CTRP. An
update permits trial owners to change a limited set
of data element
of the trial. Most of the elements are optional; if you omit an
element, corresponding trial data will remain unchanged.
</documentation>
</annotation>
<sequence>
<element ref="tns:clinicalTrialsDotGovTrialID" minOccurs="0">
<annotation>
<documentation>
If the trial does not currently specify a
ClinicalTrials.Gov ID
(a.k.a NCT ID), you can provide one during
the update.
If the trial does have a ClinicalTrials.Gov ID already,
your update
will not be allowed to change it; an attempt to do so
will be ignored by CTRP.