This file is indexed.

/usr/share/openms-common/OpenMS/SCHEMAS/TraML0.9.3.xsd is in openms-common 1.11.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://psi.hupo.org/ms/traml" xmlns:traml="http://psi.hupo.org/ms/traml" elementFormDefault="qualified" targetNamespace="http://psi.hupo.org/ms/traml" version="0.9.3">
	<xs:complexType name="TraMLType">
		<xs:annotation>
			<xs:documentation>Container for the HUPO PSI TraML format for encoding selected reaction monitoring transitions and other target lists</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvList" type="cvListType"/>
			<xs:element name="SourceFileList" type="SourceFileListType" minOccurs="0"/>
			<xs:element name="ContactList" type="ContactListType" minOccurs="0"/>
			<xs:element name="PublicationList" type="PublicationListType" minOccurs="0"/>
			<xs:element name="InstrumentList" type="InstrumentListType" minOccurs="0"/>
			<xs:element name="SoftwareList" type="SoftwareListType" minOccurs="0"/>
			<xs:element name="ProteinList" type="ProteinListType" minOccurs="0"/>
			<xs:element name="CompoundList" type="CompoundListType" minOccurs="0"/>
			<xs:element name="TransitionList" type="TransitionListType" minOccurs="0"/>
			<xs:element name="TargetList" type="TargetListType" minOccurs="0"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:string" use="optional">
			<xs:annotation>
				<xs:documentation>An optional id for the TraML document used for referencing from external files. It is recommended to use LSIDs when possible.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="version" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Version of the TraML format used by this document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:element name="TraML" type="TraMLType">
		<xs:key name="PK_PEPTIDE">
			<xs:selector xpath=".//traml:CompoundList/traml:Peptide"/>
			<xs:field xpath="@id"/>
		</xs:key>
		<xs:key name="PK_COMPOUND">
			<xs:selector xpath=".//traml:CompoundList/traml:Compound"/>
			<xs:field xpath="@id"/>
		</xs:key>
		<xs:keyref name="FK_TRANSITION_PEPTIDE" refer="PK_PEPTIDE">
			<xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
			<xs:field xpath="@peptideRef"/>
		</xs:keyref>
		<xs:keyref name="FK_TRANSITION_COMPOUND" refer="PK_COMPOUND">
			<xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
			<xs:field xpath="@compoundRef"/>
		</xs:keyref>
		<xs:key name="PK_TRANSITION">
			<xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
			<xs:field xpath="@id"/>
		</xs:key>
	</xs:element>
	<xs:complexType name="CompoundType">
		<xs:annotation>
			<xs:documentation>Chemical compound other than a peptide for which one or more transitions </xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="RetentionTimeList" type="RetentionTimeListType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the compound to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="CompoundListType">
		<xs:annotation>
			<xs:documentation>List of compounds (including peptides) for which one or more transitions are intended to identify</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="Peptide" type="PeptideType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="Compound" type="CompoundType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ConfigurationType">
		<xs:annotation>
			<xs:documentation>Instrument configuration used in the validation or optimization of the transitions</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="Validation" type="ValidationType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="contactRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a contact person originating this information</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="instrumentRef" type="xs:IDREF" use="required">
			<xs:annotation>
				<xs:documentation>Reference to an instrument for which this configuration information is appropriate</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="ConfigurationListType">
		<xs:annotation>
			<xs:documentation>List of insutrument configurations used in the validation or optimization of the transitions</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Configuration" type="ConfigurationType"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ContactType">
		<xs:annotation>
			<xs:documentation>Contact person referenced in the generation or validation of transitions</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the contact to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="ContactListType">
		<xs:annotation>
			<xs:documentation>List of contacts referenced in the generation or validation of transitions</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Contact" type="ContactType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="cvType">
		<xs:annotation>
			<xs:documentation>Controlled vocabulary used in a TraML document</xs:documentation>
		</xs:annotation>
		<xs:attribute name="version" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Version of controlled vocabulary in use when the document was created</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="URI" type="xs:anyURI" use="required">
			<xs:annotation>
				<xs:documentation>Uniform Resource Identifier for the controlled vocabulary</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="fullName" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Full name of the controlled vocabulary</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the controlled vocabulary to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="cvListType">
		<xs:annotation>
			<xs:documentation>List of controlled vocabularies used in a TraML document</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cv" type="cvType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="cvParamType">
		<xs:annotation>
			<xs:documentation>Controlled vocabulary term adding information to the parent term</xs:documentation>
		</xs:annotation>
		<xs:attribute name="cvRef" type="xs:IDREF" use="required">
			<xs:annotation>
				<xs:documentation>Reference to a controlled vocabulary for which this cvParam is </xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="name" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Name of the controlled vocabulary term referenced</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="accession" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Accession number of the controlled vocabulary term referenced</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="value" type="xs:string" use="optional">
			<xs:annotation>
				<xs:documentation>Scalar value qualifying the controlled vocabulary term referenced</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="unitAccession" type="xs:string" use="optional">
			<xs:annotation>
				<xs:documentation>An optional CV accession number for the unit term associated with the value, if any (e.g., 'UO:0000266' for 'electron volt').</xs:documentation>
				</xs:annotation>
		</xs:attribute>
		<xs:attribute name="unitName" type="xs:string" use="optional">
			<xs:annotation>
				<xs:documentation>An optional CV name for the unit accession number, if any (e.g., 'electron volt' for 'UO:0000266' ).</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="unitCvRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>If a unit term is referenced, this attribute must refer to the CV 'id' attribute defined in the cvList in this mzML file.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="EvidenceType">
		<xs:annotation>
			<xs:documentation>Information about empirical mass spectrometer observations of the peptide</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="InstrumentType">
		<xs:annotation>
			<xs:documentation>Instrument on which transitions are validated</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the instrument to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="InstrumentListType">
		<xs:annotation>
			<xs:documentation>List of instruments on which transitions are validated</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Instrument" type="InstrumentType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="InterpretationType">
		<xs:annotation>
			<xs:documentation>A possible interpration of the product ion for a transition</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="InterpretationListType">
		<xs:annotation>
			<xs:documentation>List of possible interprations of fragment ions for a transition</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Interpretation" type="InterpretationType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ModificationType">
		<xs:annotation>
			<xs:documentation>A molecule modification specification. If n modifications are present on the peptide, there should be n instances of the modification element. If multiple modifications are provided as cvParams, it is assumed the modification is ambiguous, i.e. one modification or the other. If no cvParams are provided it is assumed that the delta has not been matched to a known modification.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="location" type="xs:int" use="required">
			<xs:annotation>
				<xs:documentation>Location of the modification within the peptide sequence, counted from the N-terminus, starting at position 1. Specific modifications to the N-terminus should be given the location 0. Modification to the C-terminus should be given as peptide length + 1.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="monoisotopicMassDelta" type="xs:double" use="optional">
			<xs:annotation>
				<xs:documentation>Atomic mass delta when assuming only the most common isotope of elements in Daltons.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="averageMassDelta" type="xs:double" use="optional">
			<xs:annotation>
				<xs:documentation>Atomic mass delta when considering the natural distribution of isotopes in Daltons.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="PeptideType">
		<xs:annotation>
			<xs:documentation>Peptide for which one or more transitions are intended to identify</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="ProteinRef" type="ProteinRefType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="Modification" type="ModificationType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="RetentionTimeList" type="RetentionTimeListType" minOccurs="0"/>
			<xs:element name="Evidence" type="EvidenceType" minOccurs="0"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the peptide to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="sequence" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Amino acid sequence of the peptide being described</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="PrecursorType">
		<xs:annotation>
			<xs:documentation>Precursor (Q1) of the transition or target</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ProductType">
		<xs:annotation>
			<xs:documentation>Product (Q3) of the transition</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="PredictionType">
		<xs:annotation>
			<xs:documentation>Information about a prediction for a suitable transition using some software</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="softwareRef" type="xs:IDREF" use="required">
			<xs:annotation>
				<xs:documentation>Reference to a software package from which this prediction is derived</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="contactRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a contact person that generated this prediction</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="ProteinType">
		<xs:annotation>
			<xs:documentation>Protein for which one or more transitions are intended to identify</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="Sequence" type="SequenceType" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the protein to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="ProteinListType">
		<xs:annotation>
			<xs:documentation>List of proteins for which one or more transitions are intended to identify</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Protein" type="ProteinType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ProteinRefType">
		<xs:annotation>
			<xs:documentation>Reference to a protein which this peptide is intended to identify</xs:documentation>
		</xs:annotation>
		<xs:attribute name="ref" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a protein which this peptide is intended to identify</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="PublicationType">
		<xs:annotation>
			<xs:documentation>Reference to a publication in which one or more transitions were published</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the publication to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="PublicationListType">
		<xs:annotation>
			<xs:documentation>List of publications from which the transitions were collected or wherein they are published</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Publication" type="PublicationType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="RetentionTimeType">
		<xs:annotation>
			<xs:documentation>Information about predicted or calibrated retention time</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="1" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="softwareRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Software used to determine the retention time</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="RetentionTimeListType">
		<xs:annotation>
			<xs:documentation>List of retention time information entries</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="RetentionTime" type="RetentionTimeType" minOccurs="1" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="SequenceType" mixed="true">
		<xs:annotation>
			<xs:documentation>Amino acid sequence of the protein</xs:documentation>
		</xs:annotation>
	</xs:complexType>
	<xs:complexType name="SoftwareType">
		<xs:annotation>
			<xs:documentation>Description of a software package used in the generation of one or more transitions described in the document</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the software to be used for referencing within a document</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="version" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Version of the software program described</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="SoftwareListType">
		<xs:annotation>
			<xs:documentation>List of software packages used in the generation of one of more transitions described in the document</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Software" type="SoftwareType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="SourceFileType">
		<xs:annotation>
			<xs:documentation>Description of the source file, including location and type.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:ID" use="required">
			<xs:annotation>
				<xs:documentation>Identifier for the sourceFile to be used for referencing within a document.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="name" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>Name of the source file, without reference to location (either URI or local path).</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="location" type="xs:anyURI" use="required">
			<xs:annotation>
				<xs:documentation>URI-formatted location where the file was retrieved.</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="SourceFileListType">
		<xs:annotation>
			<xs:documentation>List and descriptions of the source files this TraML document was generated or derived from</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="SourceFile" type="SourceFileType" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="TargetType">
		<xs:annotation>
			<xs:documentation>A peptide or compound that is to be included or excluded from a target list of precursor m/z values.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Precursor" type="PrecursorType"/>
			<xs:element name="ConfigurationList" type="ConfigurationListType" minOccurs="0"/>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>String label for this target</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="peptideRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a peptide for which this target is the trigger</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="compoundRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a compound for which this target is the trigger</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="TargetExcludeListType">
		<xs:annotation>
			<xs:documentation>List of precursor m/z targets to exclude</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Target" type="TargetType" minOccurs="1" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="TargetIncludeListType">
		<xs:annotation>
			<xs:documentation>List of precursor m/z targets to include</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Target" type="TargetType" minOccurs="1" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="TargetListType">
		<xs:annotation>
			<xs:documentation>List of precursor m/z targets to include or exclude</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="TargetIncludeList" type="TargetIncludeListType" minOccurs="0" maxOccurs="1"/>
			<xs:element name="TargetExcludeList" type="TargetExcludeListType" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="TransitionType">
		<xs:annotation>
			<xs:documentation>Information about a single transition for a peptide or other compound</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Precursor" type="PrecursorType"/>
			<xs:element name="Product" type="ProductType"/>
			<xs:element name="InterpretationList" type="InterpretationListType" minOccurs="0"/>
			<xs:element name="Prediction" type="PredictionType" minOccurs="0"/>
			<xs:element name="ConfigurationList" type="ConfigurationListType" minOccurs="0"/>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="peptideRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a peptide which this transition is intended to identify</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="compoundRef" type="xs:IDREF" use="optional">
			<xs:annotation>
				<xs:documentation>Reference to a compound for this transition</xs:documentation>
			</xs:annotation>
		</xs:attribute>
		<xs:attribute name="id" type="xs:string" use="required">
			<xs:annotation>
				<xs:documentation>String label for this transition</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
	<xs:complexType name="TransitionListType">
		<xs:annotation>
			<xs:documentation>List of transitions</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="Transition" type="TransitionType" minOccurs="1" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="ValidationType">
		<xs:annotation>
			<xs:documentation>Information about the state of validation of a transition on a given instrument model</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
</xs:schema>