-
Notifications
You must be signed in to change notification settings - Fork 1
/
VOResource-v1.2.xsd
1375 lines (1269 loc) · 53.1 KB
/
VOResource-v1.2.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"?>
<xs:schema targetNamespace="http://www.ivoa.net/xml/VOResource/v1.0"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vr="http://www.ivoa.net/xml/VOResource/v1.0"
xmlns:vm="http://www.ivoa.net/xml/VOMetadata/v0.1"
elementFormDefault="unqualified"
attributeFormDefault="unqualified"
version="1.1+wd2">
<!-- NOTE: target namespace ends in v1.0 in order to not break 1.0 clients.
This is nevertheless the 1.2 schema, as given by the version attribute.
For details, see http://ivoa.net/documents/Notes/XMLVers -->
<xs:annotation>
<xs:appinfo>
<vm:schemaName>VOResource</vm:schemaName>
<vm:schemaPrefix>xs</vm:schemaPrefix>
<vm:targetPrefix>vr</vm:targetPrefix>
</xs:appinfo>
<xs:documentation>
An XML Schema describing a resource to be used in the Virtual
Observatory Project.
Please see http://www.ivoa.net/documents/latest/VOResource.html
for further information on the standard governing this
schema.
</xs:documentation>
</xs:annotation>
<xs:simpleType name="UTCTimestamp">
<xs:annotation>
<xs:documentation>
A timestamp that is compliant with ISO8601 and fixes
the timezone indicator, if present, to "Z" (UTC). VOResource
writers should always include the timezone marker. VOResource
readers must interpret timestamps without a timezone marker as
UTC.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:dateTime">
<xs:pattern value="\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d(\.\d+)?Z?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="UTCDateTime">
<xs:annotation>
<xs:documentation>
A date stamp that can be given to a precision of either a
day (type xs:date) or seconds (type xs:dateTime). Where only a
date is given, it is to be interpreted as the span of the day
on the UTC timezone if such distinctions are relevant.
</xs:documentation>
</xs:annotation>
<xs:union memberTypes="xs:date vr:UTCTimestamp"/>
</xs:simpleType>
<xs:complexType name="Resource">
<xs:annotation>
<xs:documentation>
Any entity or component of a VO application that is
describable and identifiable by an IVOA Identifier.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="validationLevel" type="vr:Validation"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
A numeric grade describing the quality of the
resource description, when applicable,
to be used to indicate the confidence an end-user
can put in the resource as part of a VO application
or research study.
</xs:documentation>
<xs:documentation>
See vr:Validation for an explanation of the
allowed levels.
</xs:documentation>
<xs:documentation>
Note that when this resource is a Service, this
grade applies to the core set of metadata.
Capability and interface metadata, as well as the
compliance of the service with the interface
standard, is rated by validationLevel tag in the
capability element (see the vr:Service complex
type).
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="title" type="xs:token">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Title</vm:dcterm>
</xs:appinfo>
<xs:documentation>
the full name given to the resource
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="shortName" type="vr:ShortName" minOccurs="0">
<xs:annotation>
<xs:documentation>
A short name or abbreviation given to the resource.
</xs:documentation>
<xs:documentation>
This name will be used where brief annotations for
the resource name are required. Applications may
use to refer to this resource in a compact display.
</xs:documentation>
<xs:documentation>
One word or a few letters is recommended. No more
than sixteen characters are allowed.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="identifier" type="vr:IdentifierURI">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Identifier</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Unambiguous reference to the resource conforming to the IVOA
standard for identifiers
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="altIdentifier" type="xs:anyURI"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
A reference to this resource in a non-IVOA identifier
scheme, e.g., DOI or bibcode. See the VOResource
specification for syntax constraints on these identifiers.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="curation" type="vr:Curation">
<xs:annotation>
<xs:documentation>
Information regarding the general curation of the resource
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="content" type="vr:Content">
<xs:annotation>
<xs:documentation>
Information regarding the general content of the resource
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="created" type="vr:UTCTimestamp" use="required">
<xs:annotation>
<xs:documentation>
The UTC date and time this resource metadata description
was created.
</xs:documentation>
<xs:documentation>
This timestamp must not be in the future. This time is
not required to be accurate; it should be at least
accurate to the day. Any non-significant time fields
should be set to zero.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="updated" type="vr:UTCTimestamp" use="required">
<xs:annotation>
<xs:documentation>
The UTC date this resource metadata description was last updated.
</xs:documentation>
<xs:documentation>
This timestamp must not be in the future. This time is
not required to be accurate; it should be at least
accurate to the day. Any non-significant time fields
should be set to zero.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="status" use="required">
<xs:annotation>
<xs:documentation>
a tag indicating whether this resource is believed to be still
actively maintained.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="active">
<xs:annotation>
<xs:documentation>
resource is believed to be currently maintained, and its
description is up to date (default).
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="inactive">
<xs:annotation>
<xs:documentation>
resource is apparently not being maintained at the present.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="deleted">
<xs:annotation>
<xs:documentation>
resource publisher has explicitly deleted the resource.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="version" type="xs:token">
<xs:annotation>
<xs:documentation>
The VOResource XML schema version
against which this instance was written.
Implementors should set this to the value of the version
attribute of their schema's root (xs:schema) element.
Clients may assume version 1.0 if this attribute is
missing.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="ValidationLevel">
<xs:annotation>
<xs:documentation>
The allowed values for describing the resource descriptions
and interfaces.
</xs:documentation>
<xs:documentation>
See the RM (v1.1, section 4) for more guidance on the use of
these values.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:whiteSpace value="collapse"/>
<xs:enumeration value="0">
<xs:annotation>
<xs:documentation>
The resource has a description that is stored in a
registry. This level does not imply a compliant
description.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>
In addition to meeting the level 0 definition, the
resource description conforms syntactically to this
standard and to the encoding scheme used.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>
In addition to meeting the level 1 definition, the
resource description refers to an existing resource that
has demonstrated to be functionally compliant.
</xs:documentation>
<xs:documentation>
When the resource is a service, it is considered to exist
and functionally compliant if use of the
service accessURL responds without error when used as
intended by the resource. If the service is a standard
one, it must also demonstrate the response is syntactically
compliant with the service standard in order to be
considered functionally compliant. If the resource is
not a service, then the ReferenceURL must be shown to
return a document without error.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="3">
<xs:annotation>
<xs:documentation>
In addition to meeting the level 2 definition, the
resource description has been inspected by a human and
judged to comply semantically to this standard as well
as meeting any additional minimum quality criteria (e.g.,
providing values for important but non-required
metadata) set by the human inspector.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="4">
<xs:annotation>
<xs:documentation>
In addition to meeting the level 3 definition, the
resource description meets additional quality criteria
set by the human inspector and is therefore considered
an excellent description of the resource. Consequently,
the resource is expected to operate well as part of a
VO application or research study.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Validation">
<xs:annotation>
<xs:documentation>
a validation stamp combining a validation level and the ID of
the validator.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="vr:ValidationLevel">
<xs:attribute name="validatedBy" type="xs:anyURI"
use="required">
<xs:annotation>
<xs:documentation>
The IVOA ID of the registry or organisation that
assigned the validation level.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="AuthorityID">
<xs:restriction base="xs:token">
<xs:pattern value="[\w\d][\w\d\-_\.!~\*'\(\)\+=]{2,}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ResourceKey">
<xs:restriction base="xs:token">
<xs:pattern value="[\w\d\-_\.!~\*'\(\)\+=]+(/[\w\d\-_\.!~\*'\(\)\+=]+)*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="IdentifierURI">
<xs:annotation>
<xs:documentation>
A reference to a registry record.
</xs:documentation>
<xs:documentation>
This type should only be used if what is referenced
must actually be a true Registry record; vr:IdentifierURI
does not allow query or fragment parts and is hence
not suitable for everything defined by IVOA Identifiers,
in particular not standard keys (which are used for versions
of standards, for instance) or dataset identifiers.
When something does not need to be locked down to a
reference to a single registry record, xs:anyURI should
be used.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:anyURI">
<xs:pattern value="ivo://[\w\d][\w\d\-_\.!~\*'\(\)\+=]{2,}(/[\w\d\-_\.!~\*'\(\)\+=]+(/[\w\d\-_\.!~\*'\(\)\+=]+)*)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ShortName">
<xs:annotation>
<xs:documentation>
A short name or abbreviation given to something.
</xs:documentation>
<xs:documentation>
This name will be used where brief annotations for
the resource name are required. Applications may
use to refer to this resource in a compact display.
</xs:documentation>
<xs:documentation>
One word or a few letters is recommended. No more
than sixteen characters are allowed.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Curation">
<xs:annotation>
<xs:documentation>
Information regarding the general curation of a resource
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="vr:ResourceName">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Publisher</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Entity (e.g. person or organisation) responsible for making the
resource available
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="creator" type="vr:Creator"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Creator</vm:dcterm>
</xs:appinfo>
<xs:documentation>
The entity/ies (e.g. person(s) or organisation) primarily responsible
for creating the content or constitution of the resource.
</xs:documentation>
<xs:documentation>
This is the equivalent of the author of a publication.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="contributor" type="vr:ResourceName"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Contributor</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Entity responsible for contributions to the content of
the resource
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="date" type="vr:Date"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Date</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Date associated with an event in the life cycle of the
resource.
</xs:documentation>
<xs:documentation>
This will typically be associated with the creation or
availability (i.e., most recent release or version) of
the resource. Use the role attribute to clarify.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" type="xs:token" minOccurs="0">
<xs:annotation>
<xs:documentation>
Label associated with creation or availablilty of a version of
a resource.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="contact" type="vr:Contact" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Information that can be used for contacting someone with
regard to this resource.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ResourceName">
<xs:annotation>
<xs:documentation>
The name of a potentially registered resource. That is, the entity
referred to may have an associated identifier. Resources
not registered in the VO Registry can be referenced using the
altIdentifier attribute.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:token">
<xs:attribute name="ivo-id" type="vr:IdentifierURI">
<xs:annotation>
<xs:documentation>
The IVOA identifier for the resource referred to.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="altIdentifier" type="xs:anyURI">
<xs:annotation>
<xs:documentation>
A non-ivoid identifier for the resource referred to,
in particular a DOI. See the VOResource specification
for syntax constraints on these identifiers.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="Contact">
<xs:annotation>
<xs:documentation>
Information allowing establishing contact, e.g., for purposes
of support.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="vr:ResourceName">
<xs:annotation>
<xs:documentation>
the name or title of the contact person.
</xs:documentation>
<xs:documentation>
This can be a person's name, e.g. “John P. Jones” or
a group, “Archive Support Team”.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="address" type="xs:token" minOccurs="0">
<xs:annotation>
<xs:documentation>the contact mailing address</xs:documentation>
<xs:documentation>
All components of the mailing address are given in one
string, e.g. “3700 San Martin Drive, Baltimore, MD 21218 USA”.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="email" type="xs:token" minOccurs="0">
<xs:annotation>
<xs:documentation>the contact email address</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="telephone" type="xs:token" minOccurs="0">
<xs:annotation>
<xs:documentation>the contact telephone number</xs:documentation>
<xs:documentation>
Complete international dialing codes should be given, e.g.
“+1-410-338-1234”.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="altIdentifier" type="xs:anyURI" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Deprecated as a child element. Use the name
attribute's altIdentifier attribute instead.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="ivo-id" type="vr:IdentifierURI">
<xs:annotation>
<xs:documentation>
An IVOA identifier for the contact (typically when it is
an organization).
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Creator">
<xs:annotation>
<xs:documentation>
The entity (e.g. person or organisation) primarily responsible
for creating something
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="vr:ResourceName">
<xs:annotation>
<xs:documentation>
the name or title of the creating person or organisation
</xs:documentation>
<xs:documentation>
Users of the creation should use this name in
subsequent credits and acknowledgements.
This should be exactly one name, preferably last name
first (as in "van der Waals, Johannes Diderik").
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="logo" type="xs:anyURI" minOccurs="0">
<xs:annotation>
<xs:documentation>
URL pointing to a graphical logo, which may be used to help
identify the information source
</xs:documentation>
<xs:documentation>
A logo needs only be provided for the first occurrence.
When multiple logos are supplied via multiple creator
elements, the application is free to choose which to
use.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="altIdentifier" type="xs:anyURI" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Deprecated as a child element. Use the name
attribute's altIdentifier attribute instead.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="ivo-id" type="vr:IdentifierURI">
<xs:annotation>
<xs:documentation>
An IVOA identifier for the creator (typically when it is
an organization).
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Date">
<xs:simpleContent>
<xs:extension base="vr:UTCDateTime">
<xs:attribute name="role" type="xs:string" default="representative">
<xs:annotation>
<xs:documentation>
A string indicating what the date refers to.
</xs:documentation>
<xs:documentation>
The value of role should be taken from the vocabulary
maintained at
http://www.ivoa.net/rdf/voresource/date_role.
This includes the traditional and deprecated strings
“creation”, indicating the date that the resource
itself was created, and “update”, indicating when the
resource was updated last, and the default value,
“representative”, meaning the date is a rough
representation of the time coverage of the resource.
The preferred terms from that vocabulary are the DataCite
Metadata terms. It is expected that the vocabulary will
be kept synchronous with the corresponding list of terms
in the DataCite Metadata schema.
</xs:documentation>
<xs:documentation>
Note that this date refers to the resource; dates describing
the metadata description of the resource are handled by
the “created” and “updated” attributes of the Resource
element.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="Content">
<xs:annotation>
<xs:documentation>
Information regarding the general content of a resource
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="subject" type="xs:token" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Subject</vm:dcterm>
</xs:appinfo>
<xs:documentation>
a topic, object type, or other descriptive keywords
about the resource.
</xs:documentation>
<xs:documentation>
The content of subject SHOULD be the fragment identifier of
the URI of a concept in the IVOA UAT
(http://www.ivoa.net/rdf/uat/), that is, a string like
“virtual-observatories”.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" type="xs:string">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Description</vm:dcterm>
</xs:appinfo>
<xs:documentation>
An account of the nature of the resource
</xs:documentation>
<xs:documentation>
The description may include but is not limited to an abstract,
table of contents, reference to a graphical representation of
content or a free-text account of the content.
Note that description is xs:string-typed, which means that
whitespace is considered significant. Clients should
render empty lines as paragraph boundaries and ideally
refrain from reflowing material that looks formatted (i.e.,
is broken to about 80-character lines).
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="source" type="vr:Source" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Source</vm:dcterm>
</xs:appinfo>
<xs:documentation>
a bibliographic reference from which the present resource is
derived or extracted.
</xs:documentation>
<xs:documentation>
This is intended to point to an article in the published
literature. An ADS Bibcode is recommended as a value when
available.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="referenceURL">
<xs:annotation>
<xs:documentation>
URL pointing to a human-readable document describing this
resource.
</xs:documentation>
<xs:documentation>
In order to ensure that users can actually retrieve the
content, the schema enforces that this is an http or https
URI.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:anyURI">
<xs:pattern value="https?://.*"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="type" type="xs:token"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Type</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Nature or genre of the content of the resource. Values for
type should be taken from the controlled vocabulary
http://www.ivoa.net/rdf/voresource/content_type
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="contentLevel" type="xs:token"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Subject</vm:dcterm>
<vm:dcterm>Subject.ContentLevel</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Description of the content level or intended audience.
Values for contentLevel should be taken from the controlled
vocabulary
http://www.ivoa.net/rdf/voresource/content_level.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="relationship" type="vr:Relationship"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
a description of a relationship to another resource.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Source">
<xs:simpleContent>
<xs:extension base="xs:token">
<xs:attribute name="format" type="xs:string">
<xs:annotation>
<xs:documentation>
The reference format. Recognized values include “bibcode”,
referring to a standard astronomical bibcode
(http://cdsweb.u-strasbg.fr/simbad/refcode.html), and
“doi” for a Digital Object Identifier
</xs:documentation>
<xs:documentation>
Since format already defines how to interpret source's
values, these do not uses any prefixes, HTTP or otherwise.
A resource would declare VOResource 1.1 as its source by
writing 2018ivoa.spec.0625P with the bibcode format, and
writing 10.5479/ADS/bib/2018ivoa.spec.0625P with the doi
format.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="Relationship">
<xs:annotation>
<xs:documentation>
A description of the relationship between one resource and one or
more other resources.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="relationshipType" type="xs:token">
<xs:annotation>
<xs:documentation>
the named type of relationship
</xs:documentation>
<xs:documentation>
The value of relationshipType should be taken from the
vocabulary at
http://www.ivoa.net/rdf/voresource/relationship_type.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="relatedResource" type="vr:ResourceName"
minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
the name of resource that this resource is related to.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!--
- The Organisation resource type
-->
<xs:complexType name="Organisation">
<xs:annotation>
<xs:documentation>
A named group of one or more persons brought together to pursue
participation in VO applications.
</xs:documentation>
<xs:documentation>
According to the Resource Metadata Recommendation, organisations
“can be hierarchical and range in size and scope. At a high level,
an organisation could be a university, observatory, or government
agency. At a finer level, it could be a specific scientific
project, mission, or individual researcher.”
</xs:documentation>
<xs:documentation>
The main purpose of an organisation as a registered resource is
to serve as a publisher of other resources.
</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="vr:Resource">
<xs:sequence>
<xs:element name="facility" type="vr:ResourceName"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Subject</vm:dcterm>
</xs:appinfo>
<xs:documentation>
the observatory or facility used to collect the data
contained or managed by this resource.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="instrument" type="vr:ResourceName"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Subject</vm:dcterm>
<vm:dcterm>Subject.Instrument</vm:dcterm>
</xs:appinfo>
<xs:documentation>
the Instrument used to collect the data contain or
managed by a resource.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!--
- The Service resource type
-->
<xs:complexType name="Service">
<xs:annotation>
<xs:documentation>
a resource that can be invoked by a client to perform some action
on its behalf.
</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="vr:Resource">
<xs:sequence>
<xs:element name="rights" type="vr:Rights"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<vm:dcterm>Rights</vm:dcterm>
</xs:appinfo>
<xs:documentation>
Information about rights held in and over the resource.
</xs:documentation>
<xs:documentation>
Mainly for compatibility with DataCite, this element
is repeatable. Resource record authors are advised
that within the Virtual Observatory clients will
typically only display and/or use the rights
element occurring first and ignore later elements.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="capability" type="vr:Capability"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
a description of a general capability of the
service and how to use it.
</xs:documentation>
<xs:documentation>
This describes a general function of the
service, usually in terms of a standard
service protocol (e.g. SIA), but not
necessarily so.
</xs:documentation>
<xs:documentation>
A service can have many capabilities
associated with it, each reflecting different
aspects of the functionality it provides.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="Rights">
<xs:annotation>
<xs:documentation>
A statement of usage conditions. This will typically
include a license,
which should be given as a full string (e.g., Creative Commons
Attribution 3.0 International). Further free-text information,
e.g., on how to attribute or on embargo periods is allowed.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:token">
<xs:attribute name="rightsURI" type="xs:anyURI">
<xs:annotation>