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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with Altova Professional XML Suite 2006 (http://www.xmlspy.com) by Ray Denenberg (Library of Congress) -->
<xsd:schema xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.loc.gov/mods/v3" targetNamespace="http://www.loc.gov/mods/v3" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.loc.gov/mods/xml.xsd"/>
<!-- ********************* Formerly, schemaLocation="http://www.w3.org/2001/xml.xsd"
changed above to schemaLocation="http://www.loc.gov/mods/xml.xsd" in version 3.3. ********* -->
<xsd:import namespace="http://www.w3.org/1999/xlink" schemaLocation="http://www.loc.gov/standards/xlink/xlink.xsd"/>
<!--
********************* Formerly, schemaLocation="http://www.loc.gov/standards/xlink.xsd"
changed above to schemaLocation="http://www.loc.gov/standards/xlink/xlink.xsd" in version 3.3. *********
****************************************************************
* MODS 3.3 January 15, 2008 *
* *
* Feb. 21 ID attribute error corrected: <xsd:attribute ref="ID"/> replaced by <xsd:attribute name="ID" type="xsd:ID"/>
****************************************************************
*************************** List of substantive changes from 3.2:
1. Increased support for Holdings. See http://www.loc.gov/standards/mods/v3/mods-holdings.html
2. Increased support for rights schemas: extensibility mechanism added to accessCondition to allow for other more detailed rights schemas (e.g.
CDL.s).
3. Allow typeOfResource to be empty.
4. Add attribute 'authority' to <frequency> under <originInfo>.
5. Add under <recordInfo>, a new element <descriptionStandard> with an authority attribute, e.g.
<descriptionStandard authority="marcdescription">rak</descriptionStandard>.
6. Add under hierarchicalGeographic (under subject): extraterrestrialArea, citySection.
7. Add Xlink attribute to physicalLocation.
8. Add additional enumerated values for authority under <language>: ISO 639-3 and RFC4646.
*************************** Non-substantive but notable changes.
1. For the 'xml:' namespace the schemaLocation="http://www.w3.org/2001/xml.xsd" is changed to schemaLocation="http://www.loc.gov/mods/xml.xsd".
2. For the 'xlink:' namespace the schemaLocation="http://www.loc.gov/standards/xlink.xsd" is changed to schemaLocation="http://www.loc.gov/standards/xlink/xlink.xsd".
3. Attribute declarations are substantially consolidated.
4. References to authority lists removed.
********************** end list of changes from 3.2
***** An instance of this schema is
(1) a single MODS record:
-->
<xsd:element name="mods" type="modsType"/>
<!--
or
(2) a collection of MODS records:
-->
<xsd:element name="modsCollection">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="mods" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<!--
***** End of "instance" definition
******* Group definition.
This forms the basis of the mods record definition, and also relatedItem. The difference between a MODS record and a relatedItem is that mods requires at least one element and relatedItem does not. The group definition is used by both, where relatedItem says minOccurs="0" and for the mods record definition minOccurs="1" (default).
-->
<xsd:group name="modsGroup">
<xsd:choice>
<!--
These are the "top level" MODS elements
-->
<xsd:element name="titleInfo" type="titleInfoType"/>
<xsd:element name="name" type="nameType"/>
<xsd:element name="typeOfResource" type="typeOfResourceType"/>
<xsd:element name="genre" type="genreType"/>
<xsd:element name="originInfo" type="originInfoType"/>
<xsd:element name="language" type="languageType"/>
<xsd:element name="physicalDescription" type="physicalDescriptionType"/>
<xsd:element name="abstract" type="abstractType"/>
<xsd:element name="tableOfContents" type="tableOfContentsType"/>
<xsd:element name="targetAudience" type="targetAudienceType"/>
<xsd:element name="note" type="noteType"/>
<xsd:element name="subject" type="subjectType"/>
<xsd:element name="classification" type="classificationType"/>
<xsd:element name="relatedItem" type="relatedItemType"/>
<xsd:element name="identifier" type="identifierType"/>
<xsd:element name="location" type="locationType"/>
<xsd:element name="accessCondition" type="accessConditionType"/>
<xsd:element name="part" type="partType"/>
<xsd:element name="extension" type="extensionType"/>
<xsd:element name="recordInfo" type="recordInfoType"/>
<!--
End list of "top level" MODS elements
-->
</xsd:choice>
</xsd:group>
<!--
***** Definition of a single MODS record
-->
<xsd:complexType name="modsType">
<xsd:group ref="modsGroup" maxOccurs="unbounded"/>
<xsd:attribute name="ID" type="xsd:ID"/>
<xsd:attribute name="version" type="versionType"/>
</xsd:complexType>
<!--
***** End of definition of a MODS record.
***** Data type definitions for top level elements follow
********** titleInfoType definition **********
-->
<xsd:complexType name="titleInfoType">
<xsd:complexContent>
<xsd:extension base="baseTitleInfoType">
<xsd:attribute name="type">
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>if this attribute is omitted, then title relates to 245$a $b $n and $p</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="abbreviated">
<xsd:annotation>
<xsd:documentation>210</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="translated">
<xsd:annotation>
<xsd:documentation>242</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="alternative">
<xsd:annotation>
<xsd:documentation>246</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="uniform">
<xsd:annotation>
<xsd:documentation>240, 130</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="baseTitleInfoType">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="title" type="xsd:string"/>
<xsd:element name="subTitle" type="xsd:string"/>
<xsd:element name="partNumber" type="xsd:string"/>
<xsd:element name="partName" type="xsd:string"/>
<xsd:element name="nonSort" type="xsd:string">
<xsd:annotation>
<xsd:documentation>All characters, including space, up to the first sort character.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:attribute name="displayLabel" type="xsd:string"/>
<xsd:attributeGroup ref="idAuthorityXlinkLanguage"/>
</xsd:complexType>
<!--
********** nameType definition **********
-->
<xsd:complexType name="nameType">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="namePart" type="namePartType"/>
<xsd:element name="displayForm" type="xsd:string">
<xsd:annotation>
<xsd:documentation>245$c</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="affiliation" type="xsd:string">
<xsd:annotation>
<xsd:documentation>100, 700 $u</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="role" type="roleType"/>
<xsd:element name="description" type="xsd:string"/>
</xsd:choice>
<xsd:attribute name="type" type="nameTypeAttribute"/>
<xsd:attributeGroup ref="idAuthorityXlinkLanguage"/>
</xsd:complexType>
<!--
***** Begin definition of subordinate types for nameType.
**namePartType
-->
<xsd:complexType name="namePartType">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="date"/>
<xsd:enumeration value="family"/>
<xsd:enumeration value="given"/>
<xsd:enumeration value="termsOfAddress"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
****roleType
-->
<xsd:complexType name="roleType">
<xsd:sequence maxOccurs="unbounded">
<xsd:element name="roleTerm">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation>if it is a code: 100, 110, 111, 700, 710, 711 $4.
If it is text:100, 110, 700, 710 $e.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthority">
<xsd:attribute name="type" type="codeOrText"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!--
***** End definition of nameType.
********** typeOfResourceType definition **********
-->
<xsd:complexType name="typeOfResourceType">
<xsd:annotation>
<xsd:documentation>LDR/6</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="resourceType">
<xsd:attribute name="collection" type="yes"/>
<xsd:attribute name="manuscript" type="yes"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- ******* resourceType ******** -->
<xsd:simpleType name="resourceType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="text"/>
<xsd:enumeration value="cartographic"/>
<xsd:enumeration value="notated music"/>
<xsd:enumeration value="sound recording-musical"/>
<xsd:enumeration value="sound recording-nonmusical"/>
<xsd:enumeration value="sound recording">
<xsd:annotation>
<xsd:documentation>Use for mixed musical and nonmusical, or when not specified whether musical or nonmusical.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="still image"/>
<xsd:enumeration value="moving image"/>
<xsd:enumeration value="three dimensional object"/>
<xsd:enumeration value="software, multimedia"/>
<xsd:enumeration value="mixed material"/>
<xsd:enumeration value=""/>
<!-- *************************empty value, new in 3.3 ************************* -->
</xsd:restriction>
</xsd:simpleType>
<!--
********** genreType defintion **********
-->
<xsd:complexType name="genreType">
<xsd:annotation>
<xsd:documentation>008/26, 008/33, 008/29, 008/30, 008/24+, 008/21, 008/25, 655</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusTypePlusLanguage"/>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** originInfoType definition **********
-->
<xsd:complexType name="originInfoType">
<xsd:choice maxOccurs="unbounded">
<xsd:element name="place" type="placeType"/>
<xsd:element name="publisher" type="xsd:string">
<xsd:annotation>
<xsd:documentation>260 $b</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="dateIssued" type="dateType">
<xsd:annotation>
<xsd:documentation>260$c, 008/07-14</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="dateCreated" type="dateType"/>
<xsd:element name="dateCaptured" type="dateType">
<xsd:annotation>
<xsd:documentation>033</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="dateValid" type="dateType"/>
<xsd:element name="dateModified" type="dateType">
<xsd:annotation>
<xsd:documentation>date resource modified, not record modified</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="copyrightDate" type="dateType"/>
<xsd:element name="dateOther" type="dateOtherType"/>
<xsd:element name="edition" type="xsd:string">
<xsd:annotation>
<xsd:documentation>250</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="issuance">
<xsd:annotation>
<xsd:documentation>LDR/7</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="continuing"/>
<xsd:enumeration value="monographic"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="frequency" type="stringPlusAuthority"/>
<!-- ***************** revised in 3.3: authority attribute added ******************* -->
</xsd:choice>
<xsd:attributeGroup ref="language"/>
</xsd:complexType>
<!--
***** Subordinate datatypes for originInfo
placeType
-->
<xsd:complexType name="placeType">
<xsd:sequence>
<xsd:element name="placeTerm" type="placeTermType" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<!--
*** placeTermType ***
-->
<xsd:complexType name="placeTermType">
<xsd:annotation>
<xsd:documentation>260 $a if text. 008/15-17, 044 if a code</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="authority" type="placeAuthority"/>
<xsd:attribute name="type" type="codeOrText"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- ***** End definition of originInfo.
********** languageType definition **********
-->
<xsd:complexType name="languageType">
<xsd:annotation>
<xsd:documentation>008/35-37, 041</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="languageTerm" maxOccurs="unbounded">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="authority">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="rfc3066"/>
<xsd:enumeration value="iso639-2b"/>
<xsd:enumeration value="iso639-3"/> <!-- new in 3.3 -->
<xsd:enumeration value="rfc4646"/> <!-- new in 3.3 -->
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="type" type="codeOrText"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="objectPart" type="xsd:string"/>
</xsd:complexType>
<!--
********** physicalDescriptionType definition **********
-->
<xsd:complexType name="physicalDescriptionType">
<xsd:choice maxOccurs="unbounded">
<xsd:element name="form" type="stringPlusAuthorityPlusType">
<xsd:annotation>
<xsd:documentation>008/23 or 29, 256</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="reformattingQuality">
<xsd:annotation>
<xsd:documentation>007/13ER</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="access"/>
<xsd:enumeration value="preservation"/>
<xsd:enumeration value="replacement"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="internetMediaType" type="xsd:string">
<xsd:annotation>
<xsd:documentation>856 $q</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="extent" type="xsd:string">
<xsd:annotation>
<xsd:documentation>300 $a and $c, and 306 $a</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="digitalOrigin">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="born digital"/>
<xsd:enumeration value="reformatted digital">
<xsd:annotation>
<xsd:documentation>007ER code a</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="digitized microfilm">
<xsd:annotation>
<xsd:documentation>
007/11ER MARC code b
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="digitized other analog">
<xsd:annotation>
<xsd:documentation>
007/11ER MARC code d
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="note" type="noteType"/>
</xsd:choice>
<xsd:attributeGroup ref="language"/>
</xsd:complexType>
<!--
********** abstractType definition **********
-->
<xsd:complexType name="abstractType">
<xsd:annotation>
<xsd:documentation>520</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="unstructuredText"/>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** tableOfContentsType definition **********
-->
<xsd:complexType name="tableOfContentsType">
<xsd:annotation>
<xsd:documentation>505</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="unstructuredText"/>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** targetAudienceType definition **********
-->
<xsd:complexType name="targetAudienceType">
<xsd:annotation>
<xsd:documentation>008/22, 521</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusLanguage"/>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** noteType definition **********
-->
<xsd:complexType name="noteType">
<xsd:simpleContent>
<xsd:extension base="unstructuredText">
<xsd:attribute name="ID" type="xsd:ID"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** subjectType definition **********
-->
<xsd:complexType name="subjectType">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="topic" type="xsd:string">
<xsd:annotation>
<xsd:documentation>650, 6xx $x</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="geographic" type="xsd:string">
<xsd:annotation>
<xsd:documentation>651, 6xx $z</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="temporal" type="dateType">
<xsd:annotation>
<xsd:documentation>648, 6xx $y</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="titleInfo" type="titleInfoType">
<xsd:annotation>
<xsd:documentation>630</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="name" type="nameType">
<xsd:annotation>
<xsd:documentation>600, 610, 611</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="geographicCode">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation> 043</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="authority" type="placeAuthority"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="hierarchicalGeographic" type="hierarchicalGeographicType"/>
<xsd:element name="cartographics">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation>255</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="scale" minOccurs="0" type="xsd:string"/>
<xsd:element name="projection" minOccurs="0" type="xsd:string"/>
<xsd:element name="coordinates" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="occupation" type="xsd:string">
<xsd:annotation>
<xsd:documentation> 656 </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="genre" type="xsd:string"/>
</xsd:choice>
<xsd:attributeGroup ref="idAuthorityXlinkLanguage"/>
</xsd:complexType>
<!--
-->
<xsd:complexType name="hierarchicalGeographicType">
<xsd:annotation>
<xsd:documentation>752</xsd:documentation>
</xsd:annotation>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="extraterrestrialArea" type="xsd:string">
<!--extraterrestrialArea new in 3.3 -->
<xsd:annotation>
<xsd:documentation>752,662$h</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="continent" type="xsd:string"/>
<xsd:element name="country" type="xsd:string"/>
<xsd:element name="province" type="xsd:string"/>
<xsd:element name="region" type="xsd:string"/>
<xsd:element name="state" type="xsd:string"/>
<xsd:element name="territory" type="xsd:string"/>
<xsd:element name="county" type="xsd:string"/>
<xsd:element name="city" type="xsd:string"/>
<xsd:element name="citySection" type="xsd:string">
<!-- citySection new in 3.3 -->
<xsd:annotation>
<xsd:documentation>752,662$f</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="island" type="xsd:string"/>
<xsd:element name="area" type="xsd:string"/>
</xsd:choice>
</xsd:complexType>
<!--
********** classificationType definition **********
-->
<xsd:complexType name="classificationType">
<xsd:annotation>
<xsd:documentation>050, 082, 080, 060, 086, 084</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusEdition">
<xsd:attributeGroup ref="language"/>
<xsd:attribute name="displayLabel" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** relatedItemType definition **********
-->
<xsd:complexType name="relatedItemType">
<xsd:group ref="modsGroup" minOccurs="0" maxOccurs="unbounded"/>
<xsd:attribute name="type">
<xsd:annotation>
<xsd:documentation>if 787; or 700, 710, 711, 730 with $t and ind2 = blank; then omit type.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="preceding">
<xsd:annotation>
<xsd:documentation>780</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="succeeding">
<xsd:annotation>
<xsd:documentation>785</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="original">
<xsd:annotation>
<xsd:documentation>534, 786</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="host">
<xsd:annotation>
<xsd:documentation>772, 773</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="constituent">
<xsd:annotation>
<xsd:documentation>770, 774, 700, 710, 711 with $t and ind2 = 2</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="series">
<xsd:annotation>
<xsd:documentation>490, 440, 760, 800, 810, 811, 830</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="otherVersion">
<xsd:annotation>
<xsd:documentation>775</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="otherFormat">
<xsd:annotation>
<xsd:documentation>776</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="isReferencedBy">
<xsd:annotation>
<xsd:documentation>510</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="displayLabel" type="xsd:string"/>
<xsd:attribute name="ID" type="xsd:ID"/>
<xsd:attributeGroup ref="xlink:simpleLink"/>
</xsd:complexType>
<!--
********** identifierType definition **********
-->
<xsd:complexType name="identifierType">
<xsd:annotation>
<xsd:documentation>010, 020, 022, 024, 028, 037, 856</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="type" type="xsd:string"/>
<!--Suggested values include (but are not limited to): "hdl","doi","isbn", "isrc", "ismn" "issn", "issue number", "istc", "lccn", "local", "matrix number", "music publisher", "music plate", "sici", "uri", "upc", "videorecording identifier", "stock number" -->
<xsd:attribute name="displayLabel" type="xsd:string">
<xsd:annotation>
<xsd:documentation>856$3</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="invalid" type="yes">
<xsd:annotation>
<xsd:documentation>$z in 0XX fields</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attributeGroup ref="language"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
*******************Begin definitions for location
************************* this includes holdings information, new in 3.3
see http://www.loc.gov/standards/mods/v3/mods-holdings.html *************************
********** locationType definition **********
-->
<xsd:complexType name="locationType">
<xsd:sequence>
<xsd:element name="physicalLocation" type="physicalLocationType" minOccurs="0" maxOccurs="unbounded"/>
<!--
****************** the following element, shelfLocator, is new in 3.3 ******************** -->
<xsd:element name="shelfLocator" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
<!-- -->
<xsd:element name="url" type="urlType" minOccurs="0" maxOccurs="unbounded"/>
<!--
****************** the following two elements are new in 3.3 ******************** -->
<xsd:element name="holdingSimple" type="holdingSimpleType" minOccurs="0"/>
<xsd:element name="holdingExternal" type="extensionType" minOccurs="0"/>
<!-- -->
</xsd:sequence>
</xsd:complexType>
<!--
******* Begin auxiliary definintions for <location>
********** urlType definition (subordinate to locationType) **********
-->
<xsd:complexType name="urlType">
<xsd:annotation>
<xsd:documentation>856$u</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:anyURI">
<xsd:attribute name="dateLastAccessed" type="xsd:string"/>
<xsd:attribute name="displayLabel" type="xsd:string">
<xsd:annotation>
<xsd:documentation>856$3</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="note" type="xsd:string">
<xsd:annotation>
<xsd:documentation>856$z</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="access">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="preview"/>
<xsd:enumeration value="raw object"/>
<xsd:enumeration value="object in context"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="usage">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="primary display"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** physicalLocationType definition (subordinate to locationType) **********
-->
<xsd:complexType name="physicalLocationType">
<xsd:annotation>
<xsd:documentation>852 </xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusTypePlusLanguagePlusDisplayLabelPlusXlink">
<!-- XLink new in 3.3 -->
<xsd:annotation>
<xsd:documentation>852$3 for displayLabel</xsd:documentation>
</xsd:annotation>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********************************************************************************************************
************** Holding definitions new in 3.3 ***************
********************************************************************************************************
********** holdingSimpleType definition (subordinate to locationType) **********
-->
<xsd:complexType name="holdingSimpleType">
<xsd:sequence>
<xsd:element name="copyInformation" type="copyInformationType" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<!--
**********copyInformationType **********
-->
<xsd:complexType name="copyInformationType">
<xsd:sequence>
<xsd:element name="form" type="stringPlusAuthority" minOccurs="0"/>
<xsd:element name="subLocation" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
<xsd:element name="shelfLocator" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
<xsd:element name="electronicLocator" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
<xsd:element name="note" type="stringPlusDisplayLabelPlusType" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="enumerationAndChronology" type="enumerationAndChronologyType" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<!--
**********enumerationAndChronologyType definition (subordinate to modsholdingType) **********
-->
<xsd:complexType name="enumerationAndChronologyType">
<xsd:annotation>
<xsd:documentation>A textual description of the enumeration and chronology of the material, eg. volume details of a periodical. From MARC Holdings 866-868 or 853-855/863-865.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="unitType">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="1">
<xsd:annotation>
<xsd:documentation> (basic bibliographic) 863 or 866</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="2">
<xsd:annotation>
<xsd:documentation> (supplement) 864 or 867</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="3">
<xsd:annotation>
<xsd:documentation> (index) 865 or 868</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********************************************************************************************************
************** End new holding definitions ***************
********************************************************************************************************
************************** end definitions for location
********** accessConditionType definition **********
-->
<xsd:complexType name="accessConditionType">
<xsd:annotation>
<xsd:documentation>506, 540</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="extensionType">
<!-- ************************* definition revised in 3.3 *************************
** base="extensionType" rather than string. extensionType is **
** mixed content, and minOccurs=0 was added to its definition **
** so the result is that this definition now supports a string (as **
** before) or an extension. ** -->
<xsd:attributeGroup ref="xlink:simpleLink"/>
<xsd:attributeGroup ref="language"/>
<xsd:attribute name="displayLabel" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<!--
********** partType definition **********
-->
<xsd:complexType name="partType">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<!--minOccurs="0" allows <part> to be optionally empty, when the ID and type attribute values contain all the information needed about the part. -->
<xsd:element name="detail" type="detailType"/>
<xsd:element name="extent" type="extentType"/>
<xsd:element name="date" type="baseDateType">
<xsd:annotation>
<xsd:documentation>Use only if different from date of resource being described in 'originInfo'</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="text" type="unstructuredText"/>
</xsd:choice>
<xsd:attribute name="ID" type="xsd:ID"/>
<xsd:attribute name="type" type="xsd:string" use="optional"/>
<xsd:attribute name="order" type="xsd:integer"/>
</xsd:complexType>
<!--
**** subordinate definitions for partType
*** detailType ***-->
<xsd:complexType name="detailType">
<xsd:choice maxOccurs="unbounded">
<xsd:element name="number" type="xsd:string"/>
<xsd:element name="caption" type="xsd:string"/>
<xsd:element name="title" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Use only if different than main title of resource being described</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:attribute name="type" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Suggested values: part, volume, issue, chapter, section, paragraph, track. These values are used regardless of linguistic term)</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="level" type="xsd:positiveInteger">
<xsd:annotation>
<xsd:documentation>Hierarchical level (level of enumeration) of a given detail element when there are multiple detail elements; top level is 1. For example assume two details, volume and issue; for volume (which is at a higher level hierarchically): type="volume" level="1"; for issue: type="issue" level="2".
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!--
*** extentType *** -->
<xsd:complexType name="extentType">
<xsd:sequence>
<xsd:annotation>
<xsd:documentation> If 'start' but not 'end' is supplied, it should be assumed that the end page is unknown. A single page is indicated by presence of both 'start' and 'end' with same value. </xsd:documentation>
</xsd:annotation>
<xsd:element name="start" minOccurs="0" type="xsd:string">
<xsd:annotation>
<xsd:documentation> Use for first page or begin minute</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="end" minOccurs="0" type="xsd:string">
<xsd:annotation>
<xsd:documentation> Use for last page, end minutes, or (together with start element) single page</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="total" type="xsd:positiveInteger" minOccurs="0">
<xsd:annotation>
<xsd:documentation> A cardinal rather than ordinal number. Use for a total number of pages or minutes.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="list" minOccurs="0" type="xsd:string">
<xsd:annotation>
<xsd:documentation> Use for an unparsed statement, e.g. p. 5-12. </xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="unit" type="xsd:string">
<xsd:annotation>
<xsd:documentation> suggested values: pages, minutes</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!--
********** extensionType definition **********
-->
<xsd:complexType name="extensionType" mixed="true">
<xsd:annotation>
<xsd:documentation>use for local extensions or for extensions from other XML schemas</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
<!-- ************************* minOccurs="0" added in version 3.3 ******************************
**This is to allow the definition to support a simple string without any "any" occurences ***** -->
</xsd:sequence>
</xsd:complexType>
<!--
********** recordInfoType definition **********
-->
<xsd:complexType name="recordInfoType">
<xsd:choice maxOccurs="unbounded">
<xsd:element name="recordContentSource" type="stringPlusAuthorityPlusLanguage">
<xsd:annotation>
<xsd:documentation>040 $a, $d</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="recordCreationDate" type="dateType">
<xsd:annotation>
<xsd:documentation>008/00-05</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="recordChangeDate" type="dateType">
<xsd:annotation>
<xsd:documentation>005</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="recordIdentifier">
<xsd:annotation>
<xsd:documentation>001</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="source" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Who supplied the identifier. From 003</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="languageOfCataloging" type="languageType">
<xsd:annotation>
<xsd:documentation>040$b</xsd:documentation>
</xsd:annotation>
<!-- This applies to the record at large. Any top level element can indicate a language, which overides this value for that element. -->
</xsd:element>
<xsd:element name="recordOrigin" type="xsd:string"/>
<xsd:element name="descriptionStandard" type="stringPlusAuthority"/>
<!-- ************************* descriptionStandard added in version 3.3 ****************************** -->
</xsd:choice>
<xsd:attributeGroup ref="language"/>
<!-- This applies to the language of RecordInfo only. I.e. for recordContentSource and for source of identifier. -->
</xsd:complexType>
<!--
***** End data type definitions for top level elements.
***** Begin global definitions.
-->
<!--
********** unstructuredText Definition **********
-->
<xsd:complexType name="unstructuredText">
<xsd:simpleContent>
<xsd:extension base="stringPlusDisplayLabelPlusType">
<xsd:attributeGroup ref="xlink:simpleLink">
<xsd:annotation>
<xsd:documentation>If the link is supplied it is in lieu of or in addition to the content.</xsd:documentation>
</xsd:annotation>
</xsd:attributeGroup>
<xsd:attributeGroup ref="language"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** dateType definition **********
-->
<xsd:complexType name="dateType">
<xsd:simpleContent>
<xsd:extension base="baseDateType">
<xsd:attribute name="keyDate" type="yes">
<xsd:annotation>
<xsd:documentation>So that a particular date may be distinguished among several dates. Thus for example when sorting MODS records by date, a date with keyDate="yes" would be the date to sort on. It should occur only for one date at most in a given record.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** baseDateType **********
Referenced by partType (as well as dateType)
-->
<xsd:complexType name="baseDateType">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="encoding">
<xsd:annotation>
<xsd:documentation>if omitted, free text is assumed</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="w3cdtf"/>
<xsd:enumeration value="iso8601"/>
<xsd:enumeration value="marc"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="qualifier">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="approximate"/>
<xsd:enumeration value="inferred"/>
<xsd:enumeration value="questionable"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="point">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="start"/>
<xsd:enumeration value="end"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** dateOtherType **********
-->
<xsd:complexType name="dateOtherType">
<xsd:simpleContent>
<xsd:extension base="dateType">
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!--
********** language attribute group definition **********
-->
<xsd:attributeGroup name="language">
<xsd:attribute name="lang" type="xsd:string">
<xsd:annotation>
<xsd:documentation>ISO 639-2b</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="xml:lang"/>
<xsd:attribute name="script" type="xsd:string"/>
<xsd:attribute name="transliteration" type="xsd:string"/>
</xsd:attributeGroup>
<!--
********** definition of codeOrText type used by type attribute
for elements that distinguish code from text **********
-->
<xsd:simpleType name="codeOrText">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="code"/>
<xsd:enumeration value="text"/>
</xsd:restriction>
</xsd:simpleType>
<!--
********** definition of placeAuthority type used by authority attribute
for placeType and geographic **********
-->
<xsd:simpleType name="placeAuthority">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="marcgac"/>
<xsd:enumeration value="marccountry"/>
<xsd:enumeration value="iso3166"/>
</xsd:restriction>
</xsd:simpleType>
<!--
********** definition of nameTypeAttribute used by name attribute
"type" **********
-->
<xsd:simpleType name="nameTypeAttribute">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="personal">
<xsd:annotation>
<xsd:documentation>100, 700</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="corporate">
<xsd:annotation>
<xsd:documentation>110, 710.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="conference">
<xsd:annotation>
<xsd:documentation>111, 711</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!--
********** versionType **********
-->
<xsd:simpleType name="versionType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="3.3"/>
</xsd:restriction>
</xsd:simpleType>
<!--
************************* all remaining below, new in 3.3 (attribute and related definitions) *************************
-->
<xsd:complexType name="stringPlusAuthority">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="authority" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusType">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthority">
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusEdition">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthority">
<xsd:attribute name="edition" type="xsd:string">
<xsd:annotation>
<xsd:documentation>edition qualifies authority, for authorities that have editions, e.g. DDC.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusDisplayLabel">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthority">
<xsd:attribute name="displayLabel" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusLanguage">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthority">
<xsd:attributeGroup ref="language"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusTypePlusLanguage">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusLanguage">
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusAuthorityPlusTypePlusLanguagePlusDisplayLabelPlusXlink">
<xsd:simpleContent>
<xsd:extension base="stringPlusAuthorityPlusTypePlusLanguage">
<xsd:attribute name="displayLabel" type="xsd:string"/>
<xsd:attributeGroup ref="xlink:simpleLink"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusDisplayLabel">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="displayLabel" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:complexType name="stringPlusDisplayLabelPlusType">
<xsd:simpleContent>
<xsd:extension base="stringPlusDisplayLabel">
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<!-- -->
<xsd:attributeGroup name="idAuthorityXlinkLanguage">
<xsd:attribute name="ID" type="xsd:ID"/>
<xsd:attribute name="authority" type="xsd:string"/>
<xsd:attributeGroup ref="xlink:simpleLink"/>
<xsd:attributeGroup ref="language"/>
</xsd:attributeGroup>
<!-- -->
<xsd:simpleType name="yes">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="yes"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
|