Spaces:
Sleeping
Sleeping
File size: 49,719 Bytes
c1300a3 | 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 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 | <?xml version="1.0" encoding="UTF-8"?>
<!-- *****************************************************************************
UniProt Knowledgebase Version: $Revision$ Date: $Date$ Copyright (c) 2011
UniProt consortium All rights reserved. ******************************************************************************* -->
<xs:schema targetNamespace="http://uniprot.org/uniprot"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://uniprot.org/uniprot" elementFormDefault="qualified">
<!-- XML Schema definition for the UniProtKB XML format Tested with: -XSV
(XML Schema Validator), http://www.w3.org/2001/03/webdata/xsv -->
<!-- Root element definition begins -->
<xs:element name="uniprot">
<xs:annotation>
<xs:documentation>Describes a collection of UniProtKB entries.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="entry" maxOccurs="unbounded" />
<xs:element ref="copyright" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<!-- Root element definition ends -->
<!-- Entry definition begins -->
<xs:element name="entry">
<xs:annotation>
<xs:documentation>Describes a UniProtKB entry.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="accession" type="xs:string"
maxOccurs="unbounded" />
<xs:element name="name" type="xs:string"
maxOccurs="unbounded" />
<xs:element name="protein" type="proteinType" />
<xs:element name="gene" type="geneType" minOccurs="0"
maxOccurs="unbounded" />
<xs:element name="organism" type="organismType" />
<xs:element name="organismHost" type="organismType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="geneLocation" type="geneLocationType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="reference" type="referenceType"
maxOccurs="unbounded" />
<xs:element name="comment" type="commentType"
nillable="true" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="proteinExistence"
type="proteinExistenceType" />
<xs:element name="keyword" type="keywordType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="feature" type="featureType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="evidence" type="evidenceType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="sequence" type="sequenceType" />
</xs:sequence>
<xs:attribute name="dataset" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Swiss-Prot" />
<xs:enumeration value="TrEMBL" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="created" type="xs:date"
use="required" />
<xs:attribute name="modified" type="xs:date"
use="required" />
<xs:attribute name="version" type="xs:int"
use="required" />
</xs:complexType>
</xs:element>
<!-- Entry definition ends -->
<xs:element name="copyright" type="xs:string" />
<!-- Protein names definition begins -->
<xs:complexType name="proteinType">
<xs:annotation>
<xs:documentation>Describes the names for the protein and parts
thereof.
Equivalent to the flat file DE-line.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:group ref="proteinNameGroup" />
<xs:element name="domain" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes names of "domains".
Equivalent to the
flat file DE-line Includes: section.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="proteinNameGroup" />
</xs:complexType>
</xs:element>
<xs:element name="component" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes names of processed products.
Equivalent
to the flat file DE-line Contains: section.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:group ref="proteinNameGroup" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:group name="proteinNameGroup">
<xs:sequence>
<xs:element name="recommendedName" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="fullName" type="evidencedStringType" />
<xs:element name="shortName" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="ecNumber" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<!-- xs:attribute name="ref" type="xs:string" use="optional"/ -->
</xs:complexType>
</xs:element>
<xs:element name="alternativeName" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="fullName" type="evidencedStringType"
minOccurs="0" />
<xs:element name="shortName" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="ecNumber" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<!-- xs:attribute name="ref" type="xs:string" use="optional"/ -->
</xs:complexType>
</xs:element>
<xs:element name="submittedName" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="fullName" type="evidencedStringType" />
<xs:element name="ecNumber" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<!-- xs:attribute name="ref" type="xs:string" use="optional"/ -->
</xs:complexType>
</xs:element>
<xs:element name="allergenName" type="evidencedStringType"
minOccurs="0" />
<xs:element name="biotechName" type="evidencedStringType"
minOccurs="0" />
<xs:element name="cdAntigenName"
type="evidencedStringType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="innName" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:group>
<!-- Protein names definition ends -->
<!-- Gene names definition begins -->
<xs:complexType name="geneType">
<xs:annotation>
<xs:documentation>Describes a gene.
Equivalent to the flat file
GN-line.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="geneNameType"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="geneNameType">
<xs:annotation>
<xs:documentation>Describes different types of gene designations.
Equivalent to the flat file GN-line.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="primary" />
<xs:enumeration value="synonym" />
<xs:enumeration value="ordered locus" />
<xs:enumeration value="ORF" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Gene names definition ends -->
<!-- Organism definition begins -->
<xs:complexType name="organismType">
<xs:annotation>
<xs:documentation>Describes the source organism.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="organismNameType"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the names of the source organism.
Equivalent to the flat file OS-line.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dbReference" type="dbReferenceType"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes a cross-reference to the NCBI taxonomy
database.
Equivalent to the flat file OX-line.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="lineage" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the lineage of the source organism.
Equivalent to the flat file OC-line.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="taxon" type="xs:string"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="organismNameType">
<xs:annotation>
<xs:documentation>Describes different types of source organism names.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="common" />
<xs:enumeration value="full" />
<xs:enumeration value="scientific" />
<xs:enumeration value="synonym" />
<xs:enumeration value="abbreviation" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Organism definition ends -->
<!-- Gene location definition begins -->
<xs:complexType name="geneLocationType">
<xs:annotation>
<xs:documentation>Describes non-nuclear gene locations (organelles
and plasmids).
Equivalent to the flat file OG-line.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="statusType" minOccurs="0"
maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="apicoplast" />
<xs:enumeration value="chloroplast" />
<xs:enumeration value="organellar chromatophore" />
<xs:enumeration value="cyanelle" />
<xs:enumeration value="hydrogenosome" />
<xs:enumeration value="mitochondrion" />
<xs:enumeration value="non-photosynthetic plastid" />
<xs:enumeration value="nucleomorph" />
<xs:enumeration value="plasmid" />
<xs:enumeration value="plastid" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="statusType">
<xs:annotation>
<xs:documentation>Indicates whether the name of a plasmid is known or
unknown.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="status" use="optional"
default="known">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="known" />
<xs:enumeration value="unknown" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Gene location definition ends -->
<!-- Reference definition begins -->
<xs:complexType name="referenceType">
<xs:annotation>
<xs:documentation>Describes a citation and a summary of its content.
Equivalent to the flat file RN-, RP-, RC-, RX-, RG-, RA-, RT- and
RL-lines.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="citation" type="citationType" />
<xs:group ref="sptrCitationGroup" />
</xs:sequence>
<xs:attribute name="evidence" type="intListType"
use="optional" />
<xs:attribute name="key" type="xs:string" use="required" />
</xs:complexType>
<!-- Reference definition ends -->
<!-- Citation definition begins -->
<xs:complexType name="citationType">
<xs:annotation>
<xs:documentation>Describes different types of citations.
Equivalent
to the flat file RX-, RG-, RA-, RT- and RL-lines.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="title" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the title of a citation.
Equivalent to
the flat file RT-line.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="editorList" type="nameListType"
minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the editors of a book (only used for
books).
Equivalent to part of the flat file RL-line of books.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="authorList" type="nameListType"
minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the authors of a citation.
Equivalent to
the flat file RA-line.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="locator" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the location (URL) of an online journal
article.
No flat file equivalent.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes cross-references to bibliography
databases (MEDLINE, PubMed, AGRICOLA) or other online resources
(DOI).
Equivalent to the flat file RX-line.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="type" use="required">
<xs:annotation>
<xs:documentation>Describes the type of a citation.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="book" />
<xs:enumeration value="journal article" />
<xs:enumeration value="online journal article" />
<xs:enumeration value="patent" />
<xs:enumeration value="submission" />
<xs:enumeration value="thesis" />
<xs:enumeration value="unpublished observations" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="date" use="optional">
<xs:simpleType>
<xs:union memberTypes="xs:date xs:gYearMonth xs:gYear" />
</xs:simpleType>
</xs:attribute>
<xs:attribute name="name" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Describes the name of an (online) journal or book.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="volume" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the volume of a journal or book.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="first" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the first page of an article.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="last" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Describes the last page of an article.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="publisher" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the publisher of a book.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="city" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Describes the city where a book was published.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="db" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Describes the database name of submissions.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="number" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes a patent number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="institute" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the institute where a thesis was made.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="country" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the country where a thesis was made.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="consortiumType">
<xs:annotation>
<xs:documentation>Describes the authors of a citation when these are
represented by a consortium.
Equivalent to the flat file RG-line.</xs:documentation>
</xs:annotation>
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="personType">
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="nameListType">
<xs:choice maxOccurs="unbounded">
<xs:element name="consortium" type="consortiumType" />
<xs:element name="person" type="personType" />
</xs:choice>
</xs:complexType>
<!-- Citation definition ends -->
<!-- Citation summary definition begins -->
<xs:group name="sptrCitationGroup">
<xs:annotation>
<xs:documentation>Groups a citation's scope and source descriptions.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="scope" type="xs:string"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the scope of a citation.
Equivalent to
the flat file RP-line.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="source" type="sourceDataType"
minOccurs="0" />
</xs:sequence>
</xs:group>
<xs:complexType name="sourceDataType">
<xs:annotation>
<xs:documentation>Describes the source of the sequence according to
the citation.
Equivalent to the flat file RC-line.</xs:documentation>
</xs:annotation>
<xs:choice maxOccurs="unbounded">
<xs:element name="strain">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="plasmid">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="transposon">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="tissue">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<!-- Citation summary definition ends -->
<!-- Comment definition begins -->
<xs:complexType name="commentType">
<xs:annotation>
<xs:documentation>Describes different types of general annotations.
Equivalent to the flat file CC-line.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="molecule" type="moleculeType"
minOccurs="0" />
<xs:choice minOccurs="0">
<xs:group ref="bpcCommentGroup" />
<xs:sequence>
<xs:annotation>
<xs:documentation>Used in 'catalytic activity' annotations.</xs:documentation>
</xs:annotation>
<xs:element name="reaction" type="reactionType" />
<xs:element name="physiologicalReaction"
type="physiologicalReactionType" minOccurs="0" maxOccurs="2" />
</xs:sequence>
<xs:sequence>
<xs:annotation>
<xs:documentation>Used in 'cofactor' annotations.</xs:documentation>
</xs:annotation>
<xs:element name="cofactor" type="cofactorType"
maxOccurs="unbounded" />
</xs:sequence>
<xs:sequence>
<xs:annotation>
<xs:documentation>Used in 'subcellular location' annotations.</xs:documentation>
</xs:annotation>
<xs:element name="subcellularLocation"
type="subcellularLocationType" maxOccurs="unbounded" />
</xs:sequence>
<xs:element name="conflict">
<xs:annotation>
<xs:documentation>Used in 'sequence caution' annotations.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="sequence" minOccurs="0">
<xs:complexType>
<xs:attribute name="resource" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="EMBL-CDS" />
<xs:enumeration value="EMBL" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="id" type="xs:string"
use="required" />
<xs:attribute name="version" type="xs:int"
use="optional" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="frameshift" />
<xs:enumeration value="erroneous initiation" />
<xs:enumeration value="erroneous termination" />
<xs:enumeration
value="erroneous gene model prediction" />
<xs:enumeration value="erroneous translation" />
<xs:enumeration
value="miscellaneous discrepancy" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ref" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Refers to the 'key' attribute of a 'reference'
element.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:sequence>
<xs:element name="link" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Used in 'online information' annotations.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="uri" type="xs:anyURI"
use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:sequence>
<xs:annotation>
<xs:documentation>Used in 'alternative products' annotations.</xs:documentation>
</xs:annotation>
<xs:element name="event" type="eventType" maxOccurs="4" />
<xs:element name="isoform" type="isoformType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:sequence>
<xs:annotation>
<xs:documentation>Used in 'interaction' annotations.</xs:documentation>
</xs:annotation>
<xs:element name="interactant" type="interactantType"
minOccurs="2" maxOccurs="2" />
<xs:element name="organismsDiffer" type="xs:boolean"
default="false" />
<xs:element name="experiments" type="xs:int" />
</xs:sequence>
<xs:element name="disease">
<xs:annotation>
<xs:documentation>Used in 'disease' annotations.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="acronym" type="xs:string" />
<xs:element name="description" type="xs:string" />
<xs:element name="dbReference" type="dbReferenceType" />
</xs:sequence>
<xs:attribute name="id" type="xs:string"
use="required" />
</xs:complexType>
</xs:element>
</xs:choice>
<xs:element name="location" type="locationType"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Used in 'mass spectrometry' and 'sequence
caution' annotations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="text" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="type" use="required">
<xs:annotation>
<xs:documentation>Describes the type of a general annotation.
Equivalent to the flat file CC comment topics (except for
"DATABASE" which is translated to "online information").</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="allergen" />
<xs:enumeration value="alternative products" />
<xs:enumeration value="biotechnology" />
<xs:enumeration
value="biophysicochemical properties" />
<xs:enumeration value="catalytic activity" />
<xs:enumeration value="caution" />
<xs:enumeration value="cofactor" />
<xs:enumeration value="developmental stage" />
<xs:enumeration value="disease" />
<xs:enumeration value="domain" />
<xs:enumeration value="disruption phenotype" />
<xs:enumeration value="activity regulation" />
<xs:enumeration value="function" />
<xs:enumeration value="induction" />
<xs:enumeration value="miscellaneous" />
<xs:enumeration value="pathway" />
<xs:enumeration value="pharmaceutical" />
<xs:enumeration value="polymorphism" />
<xs:enumeration value="PTM" />
<xs:enumeration value="RNA editing" />
<xs:enumeration value="similarity" />
<xs:enumeration value="subcellular location" />
<xs:enumeration value="sequence caution" />
<xs:enumeration value="subunit" />
<xs:enumeration value="tissue specificity" />
<xs:enumeration value="toxic dose" />
<xs:enumeration value="online information" />
<xs:enumeration value="mass spectrometry" />
<xs:enumeration value="interaction" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="locationType" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the type of sequence location in 'RNA
editing' annotations. Common values are "Not_applicable" and
"Undetermined".</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Describes an optional name for an 'online
information'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="mass" type="xs:float" use="optional">
<xs:annotation>
<xs:documentation>Describes the molecular mass in 'mass
spectrometry' annotations.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the error of the mass measurement in
'mass spectrometry' annotations.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="method" type="xs:string"
use="optional">
<xs:annotation>
<xs:documentation>Describes the experimental method in 'mass
spectrometry' annotations.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:group name="bpcCommentGroup">
<xs:annotation>
<xs:documentation>Describes different types of biophysicochemical
properties.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="absorption" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="max" type="evidencedStringType"
minOccurs="0" />
<xs:element name="text" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="kinetics" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="KM" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="Vmax" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="text" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="phDependence" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="text" type="evidencedStringType"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="redoxPotential" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="text" type="evidencedStringType"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="temperatureDependence" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="text" type="evidencedStringType"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:group>
<xs:complexType name="reactionType">
<xs:annotation>
<xs:documentation>Describes a chemical reaction.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="text" type="xs:string" />
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="physiologicalReactionType">
<xs:annotation>
<xs:documentation>Describes a physiological reaction.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="dbReference" type="dbReferenceType" />
</xs:sequence>
<xs:attribute name="direction" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="left-to-right" />
<xs:enumeration value="right-to-left" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="cofactorType">
<xs:annotation>
<xs:documentation>Describes a cofactor.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="dbReference" type="dbReferenceType" />
</xs:sequence>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="subcellularLocationType">
<xs:annotation>
<xs:documentation>Describes the subcellular location and optionally
the topology and orientation of a molecule.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="location" type="evidencedStringType"
maxOccurs="unbounded" />
<xs:element name="topology" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
<xs:element name="orientation" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="eventType">
<xs:annotation>
<xs:documentation>Describes the type of events that cause alternative
products.</xs:documentation>
</xs:annotation>
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="alternative splicing" />
<xs:enumeration value="alternative initiation" />
<xs:enumeration value="alternative promoter" />
<xs:enumeration value="ribosomal frameshifting" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<xs:complexType name="isoformType">
<xs:annotation>
<xs:documentation>Describes isoforms in 'alternative products'
annotations.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="id" type="xs:string"
maxOccurs="unbounded" />
<xs:element name="name" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="sequence">
<xs:complexType>
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="not described" />
<xs:enumeration value="described" />
<xs:enumeration value="displayed" />
<xs:enumeration value="external" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ref" type="xs:string"
use="optional" />
</xs:complexType>
</xs:element>
<xs:element name="text" type="evidencedStringType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:group name="interactantGroup">
<xs:sequence>
<xs:element name="id" type="xs:string" />
<xs:element name="label" type="xs:string" minOccurs="0" />
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" />
</xs:sequence>
</xs:group>
<xs:complexType name="interactantType">
<xs:group ref="interactantGroup" minOccurs="0" />
<xs:attribute name="intactId" type="xs:string"
use="required" />
</xs:complexType>
<!-- Comment definition ends -->
<!-- Database cross-reference definition begins -->
<xs:complexType name="dbReferenceType">
<xs:annotation>
<xs:documentation>Describes a database cross-reference.
Equivalent to
the flat file DR-line.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="molecule" type="moleculeType"
minOccurs="0" />
<xs:element name="property" type="propertyType"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="type" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Describes the name of the database.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="id" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Describes a unique database identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="evidence" type="intListType"
use="optional" />
<!-- xs:attribute name="key" type="xs:string" use="optional"/ -->
</xs:complexType>
<xs:complexType name="propertyType">
<xs:attribute name="type" type="xs:string" use="required" />
<xs:attribute name="value" type="xs:string"
use="required" />
</xs:complexType>
<!-- Database cross-reference definition ends -->
<!-- Protein existence definition begins -->
<xs:complexType name="proteinExistenceType">
<xs:annotation>
<xs:documentation>Describes the evidence for the protein's existence.
Equivalent to the flat file PE-line.</xs:documentation>
</xs:annotation>
<xs:attribute name="type" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="evidence at protein level" />
<xs:enumeration value="evidence at transcript level" />
<xs:enumeration value="inferred from homology" />
<xs:enumeration value="predicted" />
<xs:enumeration value="uncertain" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<!-- Protein existence definition ends -->
<!-- Keyword definition begins -->
<xs:complexType name="keywordType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
<xs:attribute name="id" type="xs:string" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Keyword definition ends -->
<!-- Feature definition begins -->
<xs:complexType name="featureType">
<xs:annotation>
<xs:documentation>Describes different types of sequence annotations.
Equivalent to the flat file FT-line.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="original" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the original sequence in annotations
that describe natural or artifical sequence variations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="variation" type="xs:string"
minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Describes the variant sequence in annotations
that describe natural or artifical sequence variations.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="location" type="locationType">
<xs:annotation>
<xs:documentation>Describes the sequence coordinates of the
annotation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ligand" type="ligandType" minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the chemical entity that is bound in
annotations that describe binding sites.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ligandPart" type="ligandPartType"
minOccurs="0">
<xs:annotation>
<xs:documentation>Describes the specific part of a molecule that is
bound in annotations that describe binding sites.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="type" use="required">
<xs:annotation>
<xs:documentation>Describes the type of a sequence annotation.
Equivalent to the flat file FT feature keys, but using full terms
instead of acronyms.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="active site" />
<xs:enumeration value="binding site" />
<xs:enumeration value="calcium-binding region" />
<xs:enumeration value="chain" />
<xs:enumeration value="coiled-coil region" />
<xs:enumeration
value="compositionally biased region" />
<xs:enumeration value="cross-link" />
<xs:enumeration value="disulfide bond" />
<xs:enumeration value="DNA-binding region" />
<xs:enumeration value="domain" />
<xs:enumeration value="glycosylation site" />
<xs:enumeration value="helix" />
<xs:enumeration value="initiator methionine" />
<xs:enumeration value="lipid moiety-binding region" />
<xs:enumeration value="metal ion-binding site" />
<xs:enumeration value="modified residue" />
<xs:enumeration value="mutagenesis site" />
<xs:enumeration value="non-consecutive residues" />
<xs:enumeration value="non-terminal residue" />
<xs:enumeration
value="nucleotide phosphate-binding region" />
<xs:enumeration value="peptide" />
<xs:enumeration value="propeptide" />
<xs:enumeration value="region of interest" />
<xs:enumeration value="repeat" />
<xs:enumeration value="non-standard amino acid" />
<xs:enumeration value="sequence conflict" />
<xs:enumeration value="sequence variant" />
<xs:enumeration value="short sequence motif" />
<xs:enumeration value="signal peptide" />
<xs:enumeration value="site" />
<xs:enumeration value="splice variant" />
<xs:enumeration value="strand" />
<xs:enumeration value="topological domain" />
<xs:enumeration value="transit peptide" />
<xs:enumeration value="transmembrane region" />
<xs:enumeration value="turn" />
<xs:enumeration value="unsure residue" />
<xs:enumeration value="zinc finger region" />
<xs:enumeration value="intramembrane region" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="id" type="xs:string" use="optional" />
<xs:attribute name="description" type="xs:string"
use="optional" />
<xs:attribute name="evidence" type="intListType"
use="optional" />
<xs:attribute name="ref" type="xs:string" use="optional" />
</xs:complexType>
<xs:complexType name="locationType">
<xs:annotation>
<xs:documentation>Describes a sequence location as either a range
with a begin and end or as a position. The 'sequence' attribute is
only used when the location is not on the canonical sequence
displayed in the current entry.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:sequence>
<xs:element name="begin" type="positionType" />
<xs:element name="end" type="positionType" />
</xs:sequence>
<xs:element name="position" type="positionType" />
</xs:choice>
<xs:attribute name="sequence" type="xs:string"
use="optional" />
</xs:complexType>
<xs:complexType name="positionType">
<xs:attribute name="position" type="xs:unsignedLong"
use="optional" />
<xs:attribute name="status" use="optional"
default="certain">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="certain" />
<xs:enumeration value="uncertain" />
<xs:enumeration value="less than" />
<xs:enumeration value="greater than" />
<xs:enumeration value="unknown" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:complexType>
<xs:complexType name="ligandType">
<xs:annotation>
<xs:documentation>Describes a ligand.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" />
<xs:element name="label" type="xs:string" minOccurs="0" />
<xs:element name="note" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="ligandPartType">
<xs:annotation>
<xs:documentation>Describes a ligand part.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" />
<xs:element name="label" type="xs:string" minOccurs="0" />
<xs:element name="note" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
<!-- Feature definition ends -->
<!-- Sequence definition begins -->
<xs:complexType name="sequenceType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="length" type="xs:int"
use="required" />
<xs:attribute name="mass" type="xs:int" use="required" />
<xs:attribute name="checksum" type="xs:string"
use="required" />
<xs:attribute name="modified" type="xs:date"
use="required" />
<xs:attribute name="version" type="xs:int"
use="required" />
<xs:attribute name="precursor" type="xs:boolean"
use="optional" />
<xs:attribute name="fragment" use="optional">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="single" />
<xs:enumeration value="multiple" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Sequence definition ends -->
<!-- Molecule definition begins -->
<xs:complexType name="moleculeType">
<xs:annotation>
<xs:documentation>Describes a molecule by name or unique identifier.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!-- Molecule definition ends -->
<!-- Evidence definition begins -->
<xs:complexType name="evidenceType">
<xs:annotation>
<xs:documentation>Describes the evidence for an annotation.
No flat
file equivalent.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="source" type="sourceType" minOccurs="0" />
<xs:element name="importedFrom" type="importedFromType"
minOccurs="0" />
</xs:sequence>
<xs:attribute name="type" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Describes the type of an evidence using the
Evidence Code Ontology
(http://www.obofoundry.org/cgi-bin/detail.cgi?id=evidence_code).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="key" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>A unique key to link annotations (via 'evidence'
attributes) to evidences.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="sourceType">
<xs:annotation>
<xs:documentation>Describes the source of the data using a database
cross-reference (or a 'ref' attribute when the source cannot be
found in a public data source, such as PubMed, and is cited only
within the UniProtKB entry).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="dbReference" type="dbReferenceType"
minOccurs="0" />
</xs:sequence>
<xs:attribute name="ref" type="xs:integer" use="optional" />
</xs:complexType>
<xs:complexType name="importedFromType">
<xs:annotation>
<xs:documentation>Describes the source of the evidence, when it is
not assigned by UniProt, but imported from an external database.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="dbReference" type="dbReferenceType" />
</xs:sequence>
</xs:complexType>
<!-- Evidence definition ends -->
<xs:complexType name="evidencedStringType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="evidence" type="intListType"
use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="intListType">
<xs:list itemType="xs:int" />
</xs:simpleType>
</xs:schema>
|