amazon-mws 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. data/.gitignore +1 -0
  2. data/README.markdown +31 -0
  3. data/Rakefile +14 -0
  4. data/VERSION +1 -0
  5. data/amazon-mws.gemspec +164 -0
  6. data/examples/xml/cancel_feed_submissions.xml +16 -0
  7. data/examples/xml/cancel_report_requests.xml +18 -0
  8. data/examples/xml/error.xml +10 -0
  9. data/examples/xml/get_feed_submission_count.xml +10 -0
  10. data/examples/xml/get_feed_submission_list.xml +16 -0
  11. data/examples/xml/get_feed_submission_list_by_next_token.xml +16 -0
  12. data/examples/xml/get_feed_submission_result.xml +30 -0
  13. data/examples/xml/get_report_count.xml +9 -0
  14. data/examples/xml/get_report_list.xml +17 -0
  15. data/examples/xml/get_report_request_count.xml +8 -0
  16. data/examples/xml/get_report_request_list.xml +120 -0
  17. data/examples/xml/get_report_request_list_by_next_token.xml +20 -0
  18. data/examples/xml/get_report_schedule_count.xml +10 -0
  19. data/examples/xml/get_report_schedule_list.xml +15 -0
  20. data/examples/xml/get_report_schedule_list_by_next_token.xml +15 -0
  21. data/examples/xml/manage_report_schedule.xml +14 -0
  22. data/examples/xml/request_report.xml +17 -0
  23. data/examples/xml/submit_feed.xml +14 -0
  24. data/examples/xml/update_report_acknowledgements.xml +18 -0
  25. data/examples/xsd/Inventory.xsd +49 -0
  26. data/examples/xsd/Item.xsd +285 -0
  27. data/examples/xsd/Listings.xsd +32 -0
  28. data/examples/xsd/OrderAcknowledgement.xsd +55 -0
  29. data/examples/xsd/OrderAdjustment.xsd +94 -0
  30. data/examples/xsd/OrderFulfillment.xsd +57 -0
  31. data/examples/xsd/Override.xsd +48 -0
  32. data/examples/xsd/Price.xsd +59 -0
  33. data/examples/xsd/ProcessingReport.xsd +87 -0
  34. data/examples/xsd/Product.xsd +220 -0
  35. data/examples/xsd/Product/AutoAccessory.xsd +807 -0
  36. data/examples/xsd/Product/Beauty.xsd +114 -0
  37. data/examples/xsd/Product/CE.xsd +544 -0
  38. data/examples/xsd/Product/CameraPhoto.xsd +2410 -0
  39. data/examples/xsd/Product/FoodAndBeverages.xsd +270 -0
  40. data/examples/xsd/Product/Gourmet.xsd +85 -0
  41. data/examples/xsd/Product/Health.xsd +189 -0
  42. data/examples/xsd/Product/Home.xsd +654 -0
  43. data/examples/xsd/Product/Jewelry.xsd +603 -0
  44. data/examples/xsd/Product/Miscellaneous.xsd +157 -0
  45. data/examples/xsd/Product/MusicalInstruments.xsd +853 -0
  46. data/examples/xsd/Product/Office.xsd +550 -0
  47. data/examples/xsd/Product/PetSupplies.xsd +40 -0
  48. data/examples/xsd/Product/ProductClothing.xsd +197 -0
  49. data/examples/xsd/Product/SWVG.xsd +238 -0
  50. data/examples/xsd/Product/Sports.xsd +308 -0
  51. data/examples/xsd/Product/TiresAndWheels.xsd +159 -0
  52. data/examples/xsd/Product/Tools.xsd +66 -0
  53. data/examples/xsd/Product/ToysBaby.xsd +241 -0
  54. data/examples/xsd/Product/Wireless.xsd +77 -0
  55. data/examples/xsd/ProductImage.xsd +39 -0
  56. data/examples/xsd/Relationship.xsd +47 -0
  57. data/examples/xsd/SettlementReport.xsd +158 -0
  58. data/examples/xsd/amzn-base.xsd +1601 -0
  59. data/examples/xsd/amzn-envelope.xsd +98 -0
  60. data/examples/xsd/amzn-header.xsd +45 -0
  61. data/lib/amazon/mws.rb +86 -0
  62. data/lib/amazon/mws/authentication.rb +9 -0
  63. data/lib/amazon/mws/authentication/query_string.rb +28 -0
  64. data/lib/amazon/mws/authentication/signature.rb +43 -0
  65. data/lib/amazon/mws/base.rb +61 -0
  66. data/lib/amazon/mws/connection.rb +99 -0
  67. data/lib/amazon/mws/connection/management.rb +94 -0
  68. data/lib/amazon/mws/connection/request_builder.rb +67 -0
  69. data/lib/amazon/mws/exceptions.rb +80 -0
  70. data/lib/amazon/mws/feed.rb +223 -0
  71. data/lib/amazon/mws/feed_builder.rb +67 -0
  72. data/lib/amazon/mws/feed_enumerations.rb +46 -0
  73. data/lib/amazon/mws/feed_submission.rb +14 -0
  74. data/lib/amazon/mws/lib/extensions.rb +162 -0
  75. data/lib/amazon/mws/lib/memoizable.rb +10 -0
  76. data/lib/amazon/mws/orders.rb +9 -0
  77. data/lib/amazon/mws/report.rb +310 -0
  78. data/lib/amazon/mws/report_enumerations.rb +44 -0
  79. data/lib/amazon/mws/report_info.rb +16 -0
  80. data/lib/amazon/mws/report_request.rb +19 -0
  81. data/lib/amazon/mws/report_schedule.rb +13 -0
  82. data/lib/amazon/mws/response.rb +32 -0
  83. data/lib/amazon/mws/response/cancel_feed_submissions_response.rb +14 -0
  84. data/lib/amazon/mws/response/cancel_report_requests_response.rb +14 -0
  85. data/lib/amazon/mws/response/get_feed_submission_count_response.rb +13 -0
  86. data/lib/amazon/mws/response/get_feed_submission_list_by_next_token_response.rb +15 -0
  87. data/lib/amazon/mws/response/get_feed_submission_list_response.rb +15 -0
  88. data/lib/amazon/mws/response/get_feed_submission_result_response.rb +54 -0
  89. data/lib/amazon/mws/response/get_report_count_response.rb +13 -0
  90. data/lib/amazon/mws/response/get_report_list_response.rb +15 -0
  91. data/lib/amazon/mws/response/get_report_request_count_response.rb +13 -0
  92. data/lib/amazon/mws/response/get_report_request_list_by_next_token_response.rb +15 -0
  93. data/lib/amazon/mws/response/get_report_request_list_response.rb +15 -0
  94. data/lib/amazon/mws/response/get_report_schedule_count_response.rb +13 -0
  95. data/lib/amazon/mws/response/get_report_schedule_list_by_next_token_response.rb +15 -0
  96. data/lib/amazon/mws/response/get_report_schedule_list_response.rb +15 -0
  97. data/lib/amazon/mws/response/manage_report_schedule_response.rb +14 -0
  98. data/lib/amazon/mws/response/request_report_response.rb +14 -0
  99. data/lib/amazon/mws/response/response_error.rb +15 -0
  100. data/lib/amazon/mws/response/submit_feed_response.rb +13 -0
  101. data/lib/amazon/mws/response/update_reports_acknowledgements_response.rb +14 -0
  102. data/lib/amazon/mws/version.rb +12 -0
  103. data/pkg/amazon-mws-0.1.0.gem +0 -0
  104. data/test/authentication_test.rb +15 -0
  105. data/test/connection_test.rb +5 -0
  106. data/test/feed_builder_test.rb +15 -0
  107. data/test/feed_submission_test.rb +32 -0
  108. data/test/feed_test.rb +64 -0
  109. data/test/query_string_test.rb +21 -0
  110. data/test/report_test.rb +29 -0
  111. data/test/request_test.rb +18 -0
  112. data/test/response_test.rb +197 -0
  113. data/test/signature_test.rb +30 -0
  114. data/test/test_config.yml +5 -0
  115. data/test/test_helper.rb +22 -0
  116. metadata +179 -0
@@ -0,0 +1,114 @@
1
+ <?xml version="1.0"?>
2
+ <!-- Revision="$Revision: #3 $" -->
3
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
4
+ <!--
5
+ $Date: 2005/04/01 $
6
+ AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
7
+ confidential and proprietary information of Amazon.com and may not be reproduced,
8
+ distributed or used, in whole or in part, for any purpose other than as necessary
9
+ to list products for sale on the www.amazon.com web site pursuant to an agreement
10
+ with Amazon.com.
11
+ -->
12
+ <xsd:include schemaLocation="amzn-base.xsd"/>
13
+ <xsd:element name="Beauty">
14
+ <xsd:complexType>
15
+ <xsd:sequence>
16
+ <xsd:element name="ProductType">
17
+ <xsd:complexType>
18
+ <xsd:choice>
19
+ <xsd:element ref="BeautyMisc"/>
20
+ </xsd:choice>
21
+ </xsd:complexType>
22
+ </xsd:element>
23
+ </xsd:sequence>
24
+ </xsd:complexType>
25
+ </xsd:element>
26
+ <xsd:element name="BeautyMisc">
27
+ <xsd:complexType>
28
+ <xsd:sequence>
29
+ <xsd:element name="VariationData" minOccurs="0">
30
+ <xsd:complexType>
31
+ <xsd:sequence>
32
+ <xsd:element name="Parentage">
33
+ <xsd:simpleType>
34
+ <xsd:restriction base="xsd:string">
35
+ <xsd:enumeration value="parent"/>
36
+ <xsd:enumeration value="child"/>
37
+ </xsd:restriction>
38
+ </xsd:simpleType>
39
+ </xsd:element>
40
+ <xsd:element name="VariationTheme" minOccurs="0">
41
+ <xsd:simpleType>
42
+ <xsd:restriction base="xsd:string">
43
+ <xsd:enumeration value="Size"/>
44
+ <xsd:enumeration value="Color"/>
45
+ <xsd:enumeration value="Size-Color"/>
46
+ <xsd:enumeration value="Scent"/>
47
+ <xsd:enumeration value="Size-Scent"/>
48
+ <xsd:enumeration value="PatternName"/>
49
+ </xsd:restriction>
50
+ </xsd:simpleType>
51
+ </xsd:element>
52
+ <xsd:element name="Size" type="StringNotNull" minOccurs="0"/>
53
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
54
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
55
+ <xsd:element name="Scent" type="StringNotNull" minOccurs="0"/>
56
+ </xsd:sequence>
57
+ </xsd:complexType>
58
+ </xsd:element>
59
+ <!-- Count represents the number of individually packaged items (a.k.a.
60
+ units) included, such that each item is the smallest unit with a
61
+ scannable bar code (UPC / EAN), and each item is packaged for
62
+ individual sale. For example, a box of 12 bottles of shampoo, each
63
+ of which can be sold individually, would have a Count of 12. -->
64
+ <xsd:element name="Count" type="xsd:positiveInteger" minOccurs="0"/>
65
+ <!-- NumberOfItems represents the number of discrete items included,
66
+ such that the items are not packaged for individual sale. For example,
67
+ a bag of 100 cotton balls would have a NumberOfItems of 100.
68
+ A box of 10 individually packaged bags, each with 100 cotton balls, would
69
+ have a Count of 10 and a NumberOfItems of 1000. -->
70
+ <xsd:element name="NumberOfItems" type="xsd:positiveInteger" minOccurs="0"/>
71
+ <xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
72
+ <xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
73
+ <xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
74
+ <xsd:element name="SkinType" type="String" minOccurs="0" maxOccurs="5"/>
75
+ <xsd:element name="SkinTone" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
76
+ <xsd:element name="HairType" type="String" minOccurs="0" maxOccurs="5"/>
77
+ <xsd:element name="Ingredients" minOccurs="0">
78
+ <xsd:simpleType>
79
+ <xsd:restriction base="xsd:normalizedString">
80
+ <xsd:maxLength value="1500"/>
81
+ </xsd:restriction>
82
+ </xsd:simpleType>
83
+ </xsd:element>
84
+ <xsd:element name="MaterialType" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
85
+ <xsd:element name="Indications" type="LongStringNotNull" minOccurs="0"/>
86
+ <xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
87
+ <xsd:element name="Warnings" type="LongStringNotNull" minOccurs="0"/>
88
+ <xsd:element name="ItemForm" type="String" minOccurs="0"/>
89
+ <xsd:element name="Flavor" type="StringNotNull" minOccurs="0"/>
90
+ <xsd:element name="Coverage" type="String" minOccurs="0"/>
91
+ <xsd:element name="FinishType" type="String" minOccurs="0" maxOccurs="5"/>
92
+ <xsd:element name="ItemSpecialty" type="String" minOccurs="0" maxOccurs="5"/>
93
+ <xsd:element name="PatternName" type="String" minOccurs="0"/>
94
+ <xsd:element name="IsAdultProduct" type="xsd:boolean" minOccurs="0"/>
95
+ <xsd:element name="TargetGender" minOccurs="0">
96
+ <xsd:simpleType>
97
+ <xsd:restriction base="StringNotNull">
98
+ <xsd:enumeration value="male"/>
99
+ <xsd:enumeration value="female"/>
100
+ <xsd:enumeration value="unisex"/>
101
+ </xsd:restriction>
102
+ </xsd:simpleType>
103
+ </xsd:element>
104
+ <xsd:element name="CountryOfOrigin" minOccurs="0">
105
+ <xsd:simpleType>
106
+ <xsd:restriction base="xsd:string">
107
+ <xsd:length value="2" fixed="true"/>
108
+ </xsd:restriction>
109
+ </xsd:simpleType>
110
+ </xsd:element>
111
+ </xsd:sequence>
112
+ </xsd:complexType>
113
+ </xsd:element>
114
+ </xsd:schema>
@@ -0,0 +1,544 @@
1
+ <?xml version="1.0"?>
2
+ <!-- Revision="$Revision: #6 $" -->
3
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
4
+ <!--
5
+
6
+ $Date: 2006/07/10 $
7
+
8
+ AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
9
+ confidential and proprietary information of Amazon.com and may not be reproduced,
10
+ distributed or used, in whole or in part, for any purpose other than as necessary
11
+ to list products for sale on the www.amazon.com web site pursuant to an agreement
12
+ with Amazon.com.
13
+
14
+ -->
15
+ <xsd:include schemaLocation="amzn-base.xsd"/>
16
+ <xsd:element name="CE">
17
+ <xsd:complexType>
18
+ <xsd:sequence>
19
+ <xsd:element name="ProductType">
20
+ <xsd:complexType>
21
+ <xsd:choice>
22
+ <xsd:element ref="PC"/>
23
+ <xsd:element ref="PDA"/>
24
+ <xsd:element ref="ConsumerElectronics"/>
25
+ </xsd:choice>
26
+ </xsd:complexType>
27
+ </xsd:element>
28
+ <xsd:element name="ProductSubtype" minOccurs="0">
29
+ <xsd:simpleType>
30
+ <xsd:restriction base="xsd:string">
31
+ <xsd:enumeration value="Antenna"/>
32
+ <xsd:enumeration value="AVFurniture"/>
33
+ <xsd:enumeration value="BarCodeReader"/>
34
+ <xsd:enumeration value="Battery"/>
35
+ <xsd:enumeration value="BlankMedia"/>
36
+ <xsd:enumeration value="CableOrAdapter"/>
37
+ <xsd:enumeration value="CarAudioOrTheater"/>
38
+ <xsd:enumeration value="CECarryingCaseOrBag"/>
39
+ <xsd:enumeration value="CombinedAvDevice"/>
40
+ <xsd:enumeration value="Computer"/>
41
+ <xsd:enumeration value="ComputerDriveOrStorage"/>
42
+ <xsd:enumeration value="ComputerProcessor"/>
43
+ <xsd:enumeration value="ComputerVideoGameController"/>
44
+ <xsd:enumeration value="DigitalVideoRecorder"/>
45
+ <xsd:enumeration value="DVDPlayerOrRecorder"/>
46
+ <xsd:enumeration value="FlashMemory"/>
47
+ <xsd:enumeration value="GPSOrNavigationAccessory"/>
48
+ <xsd:enumeration value="GPSOrNavigationSystem"/>
49
+ <xsd:enumeration value="HandheldOrPDA"/>
50
+ <xsd:enumeration value="HomeTheaterSystemOrHTIB"/>
51
+ <xsd:enumeration value="Keyboards"/>
52
+ <xsd:enumeration value="MemoryReader"/>
53
+ <xsd:enumeration value="Microphone"/>
54
+ <xsd:enumeration value="Monitor"/>
55
+ <xsd:enumeration value="MP3Player"/>
56
+ <xsd:enumeration value="MultifunctionOfficeMachine"/>
57
+ <xsd:enumeration value="NetworkAdapter"/>
58
+ <xsd:enumeration value="NetworkMediaPlayer"/>
59
+ <xsd:enumeration value="NetworkStorage"/>
60
+ <xsd:enumeration value="NetworkTransceiver"/>
61
+ <xsd:enumeration value="NetworkingDevice"/>
62
+ <xsd:enumeration value="NetworkingHub"/>
63
+ <xsd:enumeration value="Phone"/>
64
+ <xsd:enumeration value="PointingDevice"/>
65
+ <xsd:enumeration value="PortableAudio"/>
66
+ <xsd:enumeration value="PortableElectronics"/>
67
+ <xsd:enumeration value="Printer"/>
68
+ <xsd:enumeration value="PrinterConsumable"/>
69
+ <xsd:enumeration value="ReceiverOrAmplifier"/>
70
+ <xsd:enumeration value="RemoteControl"/>
71
+ <xsd:enumeration value="SatelliteOrDSS"/>
72
+ <xsd:enumeration value="Scanner"/>
73
+ <xsd:enumeration value="SoundCard"/>
74
+ <xsd:enumeration value="Speakers"/>
75
+ <xsd:enumeration value="SystemCabinet"/>
76
+ <xsd:enumeration value="SystemPowerDevice"/>
77
+ <xsd:enumeration value="Television"/>
78
+ <xsd:enumeration value="TwoWayRadio"/>
79
+ <xsd:enumeration value="VCR"/>
80
+ <xsd:enumeration value="VideoCard"/>
81
+ <xsd:enumeration value="VideoProjector"/>
82
+ <xsd:enumeration value="Webcam"/>
83
+ </xsd:restriction>
84
+ </xsd:simpleType>
85
+ </xsd:element>
86
+ <xsd:element name="AnalogVideoFormat" type="StringNotNull" minOccurs="0" maxOccurs="2"/>
87
+ <xsd:element name="AnsweringSystemType" type="StringNotNull" minOccurs="0"/>
88
+ <xsd:element name="AntennaLength" type="LengthDimension" minOccurs="0"/>
89
+ <xsd:element name="AntennaType" type="StringNotNull" minOccurs="0"/>
90
+ <xsd:element name="AudioFeaturesDescription" type="StringNotNull" minOccurs="0"/>
91
+ <xsd:element name="AudioInput" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
92
+ <xsd:element name="AudioOutputEffects" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
93
+ <xsd:element name="AudioOutputMode" type="StringNotNull" minOccurs="0" maxOccurs="2"/>
94
+ <xsd:element name="AudioOutputResponseBandwidth" type="StringNotNull" minOccurs="0"/>
95
+ <xsd:element name="AudioOutputType" type="StringNotNull" minOccurs="0"/>
96
+ <xsd:element name="AudioSensitivity" type="StringNotNull" minOccurs="0"/>
97
+ <xsd:element name="AutoRedial" type="xsd:boolean" minOccurs="0"/>
98
+ <xsd:element ref="Battery" minOccurs="0"/>
99
+ <xsd:element name="BufferSize" type="MemorySizeDimension" minOccurs="0"/>
100
+ <xsd:element name="BuiltInDecoders" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
101
+ <xsd:element name="ButtonQuantity" type="xsd:positiveInteger" minOccurs="0"/>
102
+ <xsd:element name="CabinetMaterial" type="StringNotNull" minOccurs="0"/>
103
+ <xsd:element name="CableFeature" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
104
+ <xsd:element name="CableTechnology" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
105
+ <xsd:element name="CableType" type="StringNotNull" minOccurs="0"/>
106
+ <xsd:element name="CacheMemoryInstalledSize" type="MemorySizeDimension" minOccurs="0"/>
107
+ <xsd:element name="CallAlerts" type="StringNotNull" minOccurs="0"/>
108
+ <xsd:element name="CallerIdentification" type="xsd:boolean" minOccurs="0"/>
109
+ <xsd:element name="CarryingStrap" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
110
+ <xsd:element name="CassetteSystemType" type="StringNotNull" minOccurs="0"/>
111
+ <xsd:element name="CDChangerType" type="StringNotNull" minOccurs="0"/>
112
+ <xsd:element name="CDDiskCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
113
+ <xsd:element name="CDLoadType" type="StringNotNull" minOccurs="0"/>
114
+ <xsd:element name="CDPlaybackMode" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
115
+ <xsd:element name="CDSystemType" type="StringNotNull" minOccurs="0"/>
116
+ <xsd:element name="CellularEnhancementProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
117
+ <xsd:element name="CoaxialDigitalInput" type="StringNotNull" minOccurs="0"/>
118
+ <xsd:element name="CoaxialDigitalOutput" type="StringNotNull" minOccurs="0"/>
119
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
120
+ <xsd:element name="ColorDepth" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
121
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
122
+ <xsd:element name="ColorSupport" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
123
+ <xsd:element name="CompatibleCartridge" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
124
+ <xsd:element name="CompatibleDevices" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
125
+ <xsd:element name="ComponentType" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
126
+ <xsd:element name="CompressedCapacity" type="MemorySizeDimension" minOccurs="0"/>
127
+ <xsd:element name="ComputerPeripheralConnector" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
128
+ <xsd:element name="ConferenceCallCapability" type="StringNotNull" minOccurs="0"/>
129
+ <xsd:element name="ConnectivityProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
130
+ <xsd:element name="ConnectivityTechnology" type="StringNotNull" minOccurs="0"/>
131
+ <xsd:element name="CopierType" type="StringNotNull" minOccurs="0"/>
132
+ <xsd:element name="CopySizeMaximum" type="StringNotNull" minOccurs="0"/>
133
+ <xsd:element name="CrossoverFrequency" type="StringNotNull" minOccurs="0"/>
134
+ <xsd:element name="DACDataWidth" type="StringNotNull" minOccurs="0"/>
135
+ <xsd:element name="DataCompressionProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
136
+ <xsd:element name="DataLinkProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
137
+ <xsd:element name="DataStorageCapability" type="StringNotNull" minOccurs="0"/>
138
+ <xsd:element name="DataTransferRate" minOccurs="0">
139
+ <xsd:complexType>
140
+ <xsd:simpleContent>
141
+ <xsd:extension base="xsd:nonNegativeInteger">
142
+ <xsd:attribute name="unitOfMeasure" type="DataTransferUnitOfMeasure" use="optional"/>
143
+ </xsd:extension>
144
+ </xsd:simpleContent>
145
+ </xsd:complexType>
146
+ </xsd:element>
147
+ <xsd:element name="DeviceType" type="StringNotNull" minOccurs="0"/>
148
+ <xsd:element name="DGPS" type="StringNotNull" minOccurs="0"/>
149
+ <xsd:element name="DialerType" type="StringNotNull" minOccurs="0"/>
150
+ <xsd:element name="DigitalPlayerType" type="StringNotNull" minOccurs="0"/>
151
+ <xsd:element name="DigitalRecordingTime" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
152
+ <xsd:element name="DigitalSignalingProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
153
+ <xsd:element name="DigitalStorageCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
154
+ <xsd:element name="DigitalZoom" type="ZoomDimension" minOccurs="0"/>
155
+ <xsd:element name="DisplayColorSupport" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
156
+ <xsd:element name="DisplayLineQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
157
+ <xsd:element name="DisplayResolutionMaximum" type="StringNotNull" minOccurs="0"/>
158
+ <xsd:element name="DisplayTechnology" type="StringNotNull" minOccurs="0"/>
159
+ <xsd:element name="DisplayType" type="StringNotNull" minOccurs="0"/>
160
+ <xsd:element name="DriveUnits" type="StringNotNull" minOccurs="0"/>
161
+ <xsd:element name="Duplex" type="StringNotNull" minOccurs="0"/>
162
+ <xsd:element name="DVDDiskCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
163
+ <xsd:element name="DVDDiskChangerType" type="StringNotNull" minOccurs="0"/>
164
+ <xsd:element name="DVDMediaLoadType" type="StringNotNull" minOccurs="0"/>
165
+ <xsd:element name="DVDPictureZoomPower" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
166
+ <xsd:element name="DVDPlaybackMode" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
167
+ <xsd:element name="DVDType" type="StringNotNull" minOccurs="0"/>
168
+ <xsd:element name="DVRCompressionRate" type="StringNotNull" minOccurs="0"/>
169
+ <xsd:element name="DVRMaxRecordingTime" type="xsd:nonNegativeInteger" minOccurs="0"/>
170
+ <xsd:element name="DVRServiceDescription" type="StringNotNull" minOccurs="0"/>
171
+ <xsd:element name="Enclosure" type="StringNotNull" minOccurs="0"/>
172
+ <xsd:element name="Equalizer" type="StringNotNull" minOccurs="0"/>
173
+ <xsd:element name="ErrorCorrectionProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
174
+ <xsd:element name="EyeRelief" type="LengthDimension" minOccurs="0"/>
175
+ <xsd:element name="FaceplateType" type="StringNotNull" minOccurs="0"/>
176
+ <xsd:element name="FaxMachineCompatibility" type="StringNotNull" minOccurs="0"/>
177
+ <xsd:element name="FaxType" type="StringNotNull" minOccurs="0"/>
178
+ <xsd:element name="FlashMemoryInstalledSize" type="xsd:nonNegativeInteger" minOccurs="0"/>
179
+ <xsd:element name="FloppyDiskDrive" minOccurs="0">
180
+ <xsd:simpleType>
181
+ <xsd:restriction base="xsd:string">
182
+ <xsd:enumeration value="1_44_mb_3_5_inch"/>
183
+ <xsd:enumeration value="720_kb_3_5_inch"/>
184
+ <xsd:enumeration value="floppy_cd_drive_combo"/>
185
+ <xsd:enumeration value="floppy_cd_rw_dvd_rom_combo"/>
186
+ <xsd:enumeration value="floppy_dvd_drive_combo"/>
187
+ <xsd:enumeration value="ls_120_superdisk"/>
188
+ <xsd:enumeration value="none"/>
189
+ <xsd:enumeration value="unknown"/>
190
+ </xsd:restriction>
191
+ </xsd:simpleType>
192
+ </xsd:element>
193
+ <xsd:element name="FormFactor" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
194
+ <xsd:element name="FrequencyRange" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
195
+ <xsd:element name="FrequencyRequired" type="StringNotNull" minOccurs="0"/>
196
+ <xsd:element name="FrequencyResponseCurve" type="StringNotNull" minOccurs="0"/>
197
+ <xsd:element name="FrontAccessibleBaysQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
198
+ <xsd:element name="GPSNavigation" type="StringNotNull" minOccurs="0"/>
199
+ <xsd:element name="GraphicsCoprocessor" type="StringNotNull" minOccurs="0"/>
200
+ <xsd:element name="GraphicsCoprocessorQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
201
+ <xsd:element name="GraphicsRam" type="Dimension" minOccurs="0"/>
202
+ <xsd:element name="GreyscaleDepth" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
203
+ <xsd:element name="HandsetDepth" type="LengthDimension" minOccurs="0"/>
204
+ <xsd:element name="HandsetHeight" type="LengthDimension" minOccurs="0"/>
205
+ <xsd:element name="HandsetLocator" type="xsd:boolean" minOccurs="0"/>
206
+ <xsd:element name="HandsetWeight" type="WeightDimension" minOccurs="0"/>
207
+ <xsd:element name="HandsetWidth" type="LengthDimension" minOccurs="0"/>
208
+ <xsd:element name="HardDiskDescription" type="StringNotNull" minOccurs="0"/>
209
+ <xsd:element name="HardDiskInstalledQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
210
+ <xsd:element name="HardDiskRotationalSpeed" type="xsd:nonNegativeInteger" minOccurs="0"/>
211
+ <xsd:element name="HardwareInterface" type="HundredString" minOccurs="0" maxOccurs="10"/>
212
+ <xsd:element name="HasCommercialSkip" type="xsd:boolean" minOccurs="0"/>
213
+ <xsd:element name="HasDVDPictureZoom" type="xsd:boolean" minOccurs="0"/>
214
+ <xsd:element name="HasParentalChannelLock" type="xsd:boolean" minOccurs="0"/>
215
+ <xsd:element name="HeadphonesFormFactor" type="StringNotNull" minOccurs="0"/>
216
+ <xsd:element name="HeadphonesJack" type="StringNotNull" minOccurs="0"/>
217
+ <xsd:element name="HeadphonesTechnology" type="StringNotNull" minOccurs="0"/>
218
+ <xsd:element name="HorizontalResolution" type="xsd:nonNegativeInteger" minOccurs="0"/>
219
+ <xsd:element name="HotSwapBaysQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
220
+ <xsd:element name="ImageAspectRatio" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
221
+ <xsd:element name="ImageBrightness" type="StringNotNull" minOccurs="0"/>
222
+ <xsd:element name="ImageContrastRatio" type="StringNotNull" minOccurs="0"/>
223
+ <xsd:element name="Impedance" type="ResistanceDimension" minOccurs="0"/>
224
+ <xsd:element name="IncludesMP3Player" type="xsd:boolean" minOccurs="0"/>
225
+ <xsd:element name="IncludesRechargableBattery" type="xsd:boolean" minOccurs="0"/>
226
+ <xsd:element name="IncludesSpeakerphone" type="xsd:boolean" minOccurs="0"/>
227
+ <xsd:element name="InputAdapter" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
228
+ <xsd:element name="InputChannelQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
229
+ <xsd:element name="InputConnection" type="Connection" minOccurs="0" maxOccurs="5"/>
230
+ <xsd:element name="InputConnectorType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
231
+ <xsd:element name="InputDevice" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
232
+ <xsd:element name="Intercom" type="xsd:boolean" minOccurs="0"/>
233
+ <xsd:element name="InternalBaysQuantity" type="xsd:positiveInteger" minOccurs="0"/>
234
+ <xsd:element name="ISDNTerminalAdapterInterface" type="StringNotNull" minOccurs="0"/>
235
+ <xsd:element name="IsHDTVCompatible" type="xsd:boolean" minOccurs="0"/>
236
+ <xsd:element name="IsWaterproof" type="xsd:boolean" minOccurs="0"/>
237
+ <xsd:element name="ItemDisplayDepth" type="LengthDimension" minOccurs="0"/>
238
+ <xsd:element name="ItemDisplayHeight" type="LengthDimension" minOccurs="0"/>
239
+ <xsd:element name="ItemDisplayLength" type="LengthDimension" minOccurs="0"/>
240
+ <xsd:element name="ItemDisplayLengthMaximum" type="LengthDimension" minOccurs="0"/>
241
+ <xsd:element name="ItemDisplayWeight" type="WeightDimension" minOccurs="0"/>
242
+ <xsd:element name="ItemDisplayWidth" type="LengthDimension" minOccurs="0"/>
243
+ <xsd:element name="KeyboardDescription" type="StringNotNull" minOccurs="0"/>
244
+ <xsd:element name="LampType" type="StringNotNull" minOccurs="0"/>
245
+ <xsd:element name="LeftConnectorGender" type="StringNotNull" minOccurs="0"/>
246
+ <xsd:element name="LeftConnectorType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
247
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
248
+ <xsd:element name="MaxCopyResolutionBlackWhite" type="StringNotNull" minOccurs="0"/>
249
+ <xsd:element name="MaxCopyResolutionColor" type="StringNotNull" minOccurs="0"/>
250
+ <xsd:element name="MaximumExternalResolution" type="StringNotNull" minOccurs="0"/>
251
+ <xsd:element name="MaximumImageSize" type="LengthDimension" minOccurs="0"/>
252
+ <xsd:element name="MaximumOutputPower" type="StringNotNull" minOccurs="0"/>
253
+ <xsd:element name="MaximumRange" type="LengthDimension" minOccurs="0"/>
254
+ <xsd:element name="MaximumRangeIndoors" type="LengthDimension" minOccurs="0"/>
255
+ <xsd:element name="MaximumSampleRate" type="FrequencyDimension" minOccurs="0"/>
256
+ <xsd:element name="MaximumScreenDistance" type="LengthDimension" minOccurs="0"/>
257
+ <xsd:element name="MaxInputSheetCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
258
+ <xsd:element name="MaxPrintResolutionBlackWhite" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
259
+ <xsd:element name="MaxPrintResolutionColor" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
260
+ <xsd:element name="MediaFormat" type="StringNotNull" minOccurs="0"/>
261
+ <xsd:element name="MediaLoadType" type="StringNotNull" minOccurs="0"/>
262
+ <xsd:element name="MediaSizeMaximum" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
263
+ <xsd:element name="MediaType" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
264
+ <xsd:element name="MemoryStorageCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
265
+ <xsd:element name="MemoryTechnology" type="StringNotNull" minOccurs="0"/>
266
+ <xsd:element name="MicrophoneFormFactor" type="StringNotNull" minOccurs="0"/>
267
+ <xsd:element name="MicrophoneOperationMode" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
268
+ <xsd:element name="MicrophoneTechnology" type="StringNotNull" minOccurs="0"/>
269
+ <xsd:element name="MiniDiscSystem" type="StringNotNull" minOccurs="0"/>
270
+ <xsd:element name="MinimumImageSize" type="LengthDimension" minOccurs="0"/>
271
+ <xsd:element name="MinimumScreenDistance" type="LengthDimension" minOccurs="0"/>
272
+ <xsd:element name="MinimumSystemRequirementDescription" type="StringNotNull" minOccurs="0"/>
273
+ <xsd:element name="Model" type="FortyStringNotNull" minOccurs="0"/>
274
+ <xsd:element name="ModelName" type="StringNotNull" minOccurs="0"/>
275
+ <xsd:element name="ModemDescription" type="StringNotNull" minOccurs="0"/>
276
+ <xsd:element name="ModemInterface" type="StringNotNull" minOccurs="0"/>
277
+ <xsd:element name="ModemType" type="StringNotNull" minOccurs="0"/>
278
+ <xsd:element name="MonthlyDutyCycle" type="StringNotNull" minOccurs="0"/>
279
+ <xsd:element name="MovementDetectionTechnology" type="StringNotNull" minOccurs="0"/>
280
+ <xsd:element name="MultilineOperation" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
281
+ <xsd:element name="MultimediaFunctionality" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
282
+ <xsd:element name="NavigationRoutes" type="xsd:positiveInteger" minOccurs="0"/>
283
+ <xsd:element name="NetworkingFeature" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
284
+ <xsd:element name="NetworkInterfaceDescription" type="StringNotNull" minOccurs="0"/>
285
+ <xsd:element name="NumberOfPorts" type="xsd:nonNegativeInteger" minOccurs="0"/>
286
+ <xsd:element name="NumberOfSupportedZones" type="xsd:positiveInteger" minOccurs="0"/>
287
+ <xsd:element name="ObjectiveLensDiameter" type="LengthDimension" minOccurs="0"/>
288
+ <xsd:element name="OpticalDigitalInput" type="StringNotNull" minOccurs="0"/>
289
+ <xsd:element name="OpticalDigitalOutput" type="StringNotNull" minOccurs="0"/>
290
+ <xsd:element name="OpticalSensorInterpolatedResolution" type="PixelDimension" minOccurs="0"/>
291
+ <xsd:element name="OpticalSensorResolution" type="PixelDimension" minOccurs="0"/>
292
+ <xsd:element name="OpticalStorageDevice" type="StringNotNull" minOccurs="0" maxOccurs="2"/>
293
+ <xsd:element name="OpticalStorageInstalledQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
294
+ <xsd:element name="OpticalStorageReadSpeed" type="StringNotNull" minOccurs="0"/>
295
+ <xsd:element name="OpticalStorageRewriteSpeed" type="StringNotNull" minOccurs="0"/>
296
+ <xsd:element name="OpticalStorageSecondaryReadSpeed" type="StringNotNull" minOccurs="0"/>
297
+ <xsd:element name="OpticalStorageSecondaryRewriteSpeed" type="StringNotNull" minOccurs="0"/>
298
+ <xsd:element name="OpticalStorageSecondaryType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
299
+ <xsd:element name="OpticalStorageSecondaryWriteSpeed" type="StringNotNull" minOccurs="0"/>
300
+ <xsd:element name="OpticalStorageWriteSpeed" type="StringNotNull" minOccurs="0"/>
301
+ <xsd:element name="OutputChannelQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
302
+ <xsd:element name="OutputConnection" type="Connection" minOccurs="0" maxOccurs="5"/>
303
+ <xsd:element name="OutputConnectorQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
304
+ <xsd:element name="OutputConnectorType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
305
+ <xsd:element name="OutputWattage" type="xsd:positiveInteger" minOccurs="0"/>
306
+ <xsd:element name="PackageTypeName" type="StringNotNull" minOccurs="0"/>
307
+ <xsd:element name="PCConnectionAvailable" type="StringNotNull" minOccurs="0"/>
308
+ <xsd:element name="PhoneBaseDepth" type="LengthDimension" minOccurs="0"/>
309
+ <xsd:element name="PhoneBaseHeight" type="LengthDimension" minOccurs="0"/>
310
+ <xsd:element name="PhoneBaseWeight" type="WeightDimension" minOccurs="0"/>
311
+ <xsd:element name="PhoneBaseWidth" type="LengthDimension" minOccurs="0"/>
312
+ <xsd:element name="PowerDevice" type="StringNotNull" minOccurs="0"/>
313
+ <xsd:element name="PowerLoadRating" type="StringNotNull" minOccurs="0"/>
314
+ <xsd:element name="PresetChannelQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
315
+ <xsd:element name="PrinterInterface" type="StringNotNull" minOccurs="0"/>
316
+ <xsd:element name="PrinterOutput" type="StringNotNull" minOccurs="0"/>
317
+ <xsd:element name="PrinterResolutionBWHorizontalMax" type="PixelDimension" minOccurs="0"/>
318
+ <xsd:element name="PrinterResolutionBWVerticalMax" type="PixelDimension" minOccurs="0"/>
319
+ <xsd:element name="PrinterResolutionColorHorizontalMax" type="PixelDimension" minOccurs="0"/>
320
+ <xsd:element name="PrinterResolutionColorVerticalMax" type="PixelDimension" minOccurs="0"/>
321
+ <xsd:element name="PrinterTechnology" type="StringNotNull" minOccurs="0"/>
322
+ <xsd:element name="ProcessorMaximum" type="xsd:nonNegativeInteger" minOccurs="0"/>
323
+ <xsd:element name="ProcessorModelNumber" type="StringNotNull" minOccurs="0"/>
324
+ <xsd:element name="ProcessorUpgrade" type="StringNotNull" minOccurs="0"/>
325
+ <xsd:element name="Programmability" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
326
+ <xsd:element name="RadioBandsSupported" type="StringNotNull" minOccurs="0"/>
327
+ <xsd:element name="RadioChannels" type="StringNotNull" minOccurs="0"/>
328
+ <xsd:element name="RAIDLevel" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
329
+ <xsd:element name="RAMMemoryInstalledSize" type="MemorySizeDimension" minOccurs="0"/>
330
+ <xsd:element name="RAMMemoryMaximumSize" type="MemorySizeDimension" minOccurs="0"/>
331
+ <xsd:element name="RAMMemoryTechnology" type="StringNotNull" minOccurs="0"/>
332
+ <xsd:element name="RangefinderType" type="StringNotNull" minOccurs="0"/>
333
+ <xsd:element name="ReceiverDescription" type="StringNotNull" minOccurs="0"/>
334
+ <xsd:element name="RecordingCapacity" type="MemorySizeDimension" minOccurs="0"/>
335
+ <xsd:element name="RemoteControlAudioControls" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
336
+ <xsd:element name="RemoteControlDescription" type="StringNotNull" minOccurs="0"/>
337
+ <xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
338
+ <xsd:element name="RemoteManagementProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
339
+ <xsd:element name="RemovableMediaCapacity" type="MemorySizeDimension" minOccurs="0"/>
340
+ <xsd:element name="RemovableMemory" type="StringNotNull" minOccurs="0"/>
341
+ <xsd:element name="RemovableStorage" type="StringNotNull" minOccurs="0"/>
342
+ <xsd:element name="RemovableStorageInterface" type="StringNotNull" minOccurs="0"/>
343
+ <xsd:element name="RemovableStorageNativeCapacity" type="MemorySizeDimension" minOccurs="0"/>
344
+ <xsd:element name="ResponseTime" type="TimeDimension" minOccurs="0"/>
345
+ <xsd:element name="RightConnectorGender" type="StringNotNull" minOccurs="0"/>
346
+ <xsd:element name="RightConnectorType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
347
+ <xsd:element name="RoutingProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
348
+ <xsd:element name="SatelliteServiceDescription" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
349
+ <xsd:element name="SBAS" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
350
+ <xsd:element name="ScanElementType" type="StringNotNull" minOccurs="0"/>
351
+ <xsd:element name="ScannerInterface" type="StringNotNull" minOccurs="0"/>
352
+ <xsd:element name="ScannerType" type="StringNotNull" minOccurs="0"/>
353
+ <xsd:element name="SCSISignalingType" type="StringNotNull" minOccurs="0"/>
354
+ <xsd:element name="SearchSpeed" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
355
+ <xsd:element name="Size" type="StringNotNull" minOccurs="0"/>
356
+ <xsd:element name="SpeakerAmplificationType" type="HundredString" minOccurs="0"/>
357
+ <xsd:element name="SpeakerConnectivity" type="StringNotNull" minOccurs="0"/>
358
+ <xsd:element name="SpeakerDriverMaterial" type="StringNotNull" minOccurs="0"/>
359
+ <xsd:element name="SpeakersCrossoverChannelQuantity" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
360
+ <xsd:element name="SpeakersIncludedDescription" type="StringNotNull" minOccurs="0"/>
361
+ <xsd:element name="SpeakersResponseBandwidth" type="StringNotNull" minOccurs="0"/>
362
+ <xsd:element name="SpeakerSystemClass" type="StringNotNull" minOccurs="0"/>
363
+ <xsd:element name="SpeakerType" type="StringNotNull" minOccurs="0"/>
364
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
365
+ <xsd:element name="SpecificationMet" type="HundredString" minOccurs="0"/>
366
+ <xsd:element name="SpecificUses" type="StringNotNull" minOccurs="0"/>
367
+ <xsd:element name="StandardInputSheetCapacity" type="xsd:nonNegativeInteger" minOccurs="0"/>
368
+ <xsd:element name="StorageController" type="StringNotNull" minOccurs="0"/>
369
+ <xsd:element name="StorageControllerInterface" type="StringNotNull" minOccurs="0"/>
370
+ <xsd:element name="StorageInterface" type="StringNotNull" minOccurs="0"/>
371
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
372
+ <xsd:element name="SupportedAudioFormat" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
373
+ <xsd:element name="SupportedDevices" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
374
+ <xsd:element name="SupportedDevicesQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
375
+ <xsd:element name="SupportedImageFormat" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
376
+ <xsd:element name="SupportedImageType" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
377
+ <xsd:element name="SupportedMediaSize" type="StringNotNull" minOccurs="0"/>
378
+ <xsd:element name="SupportedMotherboard" type="StringNotNull" minOccurs="0"/>
379
+ <xsd:element name="SupportedStandards" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
380
+ <xsd:element name="SurgeSuppression" type="StringNotNull" minOccurs="0"/>
381
+ <xsd:element name="SurroundSoundChannels" type="StringNotNull" minOccurs="0"/>
382
+ <xsd:element name="SurroundSoundEffects" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
383
+ <xsd:element name="SwitchingProtocol" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
384
+ <xsd:element name="SystemBusSpeed" type="Dimension" minOccurs="0"/>
385
+ <xsd:element name="TalkRangeMaximum" type="LengthDimension" minOccurs="0"/>
386
+ <xsd:element name="TapeLength" type="TimeDimension" minOccurs="0"/>
387
+ <xsd:element name="TelevisionInterface" type="StringNotNull" minOccurs="0"/>
388
+ <xsd:element name="TelevisionPCInterfaceType" type="StringNotNull" minOccurs="0"/>
389
+ <xsd:element name="TotalHarmonicDistortion" type="StringNotNull" minOccurs="0"/>
390
+ <xsd:element name="TracklogPoints" type="xsd:positiveInteger" minOccurs="0"/>
391
+ <xsd:element name="Tracks" type="xsd:nonNegativeInteger" minOccurs="0"/>
392
+ <xsd:element name="TransportProtocol" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
393
+ <xsd:element name="Tuner" type="StringNotNull" minOccurs="0"/>
394
+ <xsd:element name="TunerTechnology" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
395
+ <xsd:element name="TVTunerSecondaryAudioProgram" type="xsd:boolean" minOccurs="0"/>
396
+ <xsd:element name="UPSTechnology" type="StringNotNull" minOccurs="0"/>
397
+ <xsd:element name="VCRType" type="StringNotNull" minOccurs="0" maxOccurs="2"/>
398
+ <xsd:element name="VerticalResolution" type="PixelDimension" minOccurs="0"/>
399
+ <xsd:element name="VideoCaptureFormat" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
400
+ <xsd:element name="VideoCaptureResolution" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
401
+ <xsd:element name="VideoHeadQuantity" type="xsd:nonNegativeInteger" minOccurs="0"/>
402
+ <xsd:element name="VideoInput" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
403
+ <xsd:element name="VideoInputDigitalStandard" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
404
+ <xsd:element name="VideoInputFormat" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
405
+ <xsd:element name="VideoOutput" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
406
+ <xsd:element name="VideoOutputInterface" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
407
+ <xsd:element name="VideoOutputMode" type="StringNotNull" minOccurs="0"/>
408
+ <xsd:element name="VideoPlaybackFormat" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
409
+ <xsd:element name="VideotapePlaybackSpeed" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
410
+ <xsd:element name="VideotapeRecordingSpeed" type="StringNotNull" minOccurs="0"/>
411
+ <xsd:element name="VoiceCommunicationSupport" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
412
+ <xsd:element name="VoicemailCapability" type="xsd:boolean" minOccurs="0"/>
413
+ <xsd:element name="VoiceOperatedTransmission" type="StringNotNull" minOccurs="0"/>
414
+ <xsd:element name="VOIPProtocols" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
415
+ <xsd:element name="WarrantyDescription" type="StringNotNull" minOccurs="0"/>
416
+ <xsd:element name="Waypoints" type="Dimension" minOccurs="0"/>
417
+ <xsd:element name="WaypointsPerRoute" type="xsd:positiveInteger" minOccurs="0"/>
418
+ <xsd:element name="Weatherproof" type="StringNotNull" minOccurs="0"/>
419
+ <xsd:element name="WriteSpeed" type="StringNotNull" minOccurs="0"/>
420
+ </xsd:sequence>
421
+ </xsd:complexType>
422
+ </xsd:element>
423
+ <!--
424
+ ###############################################################
425
+ # PC Classification Data
426
+ ###############################################################
427
+ -->
428
+ <xsd:element name="PC">
429
+ <xsd:complexType>
430
+ <xsd:sequence>
431
+ <xsd:element name="HardDriveSize" type="MemorySizeDimension" maxOccurs="8"/>
432
+ <xsd:element name="HardDriveInterface" type="FortyStringNotNull" maxOccurs="4"/>
433
+ <xsd:element name="ComputerMemoryType" type="FortyStringNotNull" maxOccurs="10"/>
434
+ <xsd:element name="RAMSize" type="MemorySizeDimension"/>
435
+ <xsd:element name="ProcessorBrand" type="FortyStringNotNull"/>
436
+ <xsd:element name="ProcessorSpeed" type="FrequencyDimension"/>
437
+ <xsd:element name="ProcessorType" type="FortyStringNotNull"/>
438
+ <xsd:element name="ProcessorCount" type="xsd:positiveInteger"/>
439
+ <xsd:element name="OperatingSystem" type="MediumStringNotNull" maxOccurs="2"/>
440
+ <xsd:element name="HardwarePlatform" type="MediumStringNotNull"/>
441
+ <xsd:element name="WirelessType" type="FortyStringNotNull" minOccurs="0" maxOccurs="3"/>
442
+ <xsd:element name="AdditionalDrives" type="FortyStringNotNull" minOccurs="0" maxOccurs="10"/>
443
+ <xsd:element name="SoftwareIncluded" type="LongStringNotNull" minOccurs="0"/>
444
+ <xsd:element name="MemorySlotsAvailable" type="StringNotNull" minOccurs="0"/>
445
+ <xsd:element name="ScreenResolution" type="FortyStringNotNull" minOccurs="0"/>
446
+ <xsd:element name="ScreenSize" type="LengthDimension" minOccurs="0"/>
447
+ <xsd:element name="U-RackSize" minOccurs="0">
448
+ <xsd:simpleType>
449
+ <xsd:restriction base="xsd:positiveInteger">
450
+ <xsd:minInclusive value="1"/>
451
+ <xsd:maxInclusive value="4"/>
452
+ </xsd:restriction>
453
+ </xsd:simpleType>
454
+ </xsd:element>
455
+ <xsd:element ref="GraphicsCard" minOccurs="0" maxOccurs="2"/>
456
+ <xsd:element name="AdditionalFeatures" type="LongStringNotNull" minOccurs="0"/>
457
+ </xsd:sequence>
458
+ </xsd:complexType>
459
+ </xsd:element>
460
+ <!--
461
+ ###############################################################
462
+ # PDA Classification Data
463
+ ###############################################################
464
+ -->
465
+ <xsd:element name="PDA">
466
+ <xsd:complexType>
467
+ <xsd:sequence>
468
+ <xsd:element name="ComputerMemoryType" type="FortyStringNotNull" maxOccurs="10"/>
469
+ <xsd:element name="RAMSize" type="MemorySizeDimension"/>
470
+ <xsd:element name="ScreenResolution" type="FortyStringNotNull"/>
471
+ <xsd:element name="ColorScreen" type="xsd:boolean"/>
472
+ <xsd:element name="OperatingSystem" type="MediumStringNotNull" maxOccurs="5"/>
473
+ <xsd:element name="WirelessType" type="FortyStringNotNull" minOccurs="0" maxOccurs="3"/>
474
+ <xsd:element name="HardDriveSize" type="MemorySizeDimension" minOccurs="0"/>
475
+ <xsd:element name="SoftwareIncluded" type="LongStringNotNull" minOccurs="0"/>
476
+ <xsd:element name="MemorySlotsAvailable" type="StringNotNull" minOccurs="0"/>
477
+ <xsd:element name="ProcessorSpeed" type="FrequencyDimension" minOccurs="0"/>
478
+ <xsd:element name="ProcessorType" type="FortyStringNotNull" minOccurs="0"/>
479
+ <xsd:element name="ROMSize" type="MemorySizeDimension" minOccurs="0"/>
480
+ <xsd:element name="ScreenSize" type="LengthDimension" minOccurs="0"/>
481
+ <xsd:element name="AdditionalFeatures" type="LongStringNotNull" minOccurs="0"/>
482
+ <xsd:element name="PDABaseModel" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
483
+ </xsd:sequence>
484
+ </xsd:complexType>
485
+ </xsd:element>
486
+ <!--
487
+ ###############################################################
488
+ # Consumer Electronics Classification Data
489
+ ###############################################################
490
+ -->
491
+ <xsd:element name="ConsumerElectronics">
492
+ <xsd:complexType>
493
+ <xsd:sequence>
494
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
495
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
496
+ <xsd:element name="Voltage" type="VoltageDecimalDimension" minOccurs="0"/>
497
+ <xsd:element name="Wattage" type="WattageIntegerDimension" minOccurs="0"/>
498
+ <xsd:element name="PowerSource" type="FortyStringNotNull" minOccurs="0"/>
499
+ <xsd:element name="AdditionalFeatures" type="LongStringNotNull" minOccurs="0"/>
500
+ <xsd:element name="VehicleSpeakerSize" type="TwentyStringNotNull" minOccurs="0"/>
501
+ <xsd:element name="SpeakerDiameter" type="LengthDimension" minOccurs="0"/>
502
+ <xsd:element name="TelephoneType" type="FortyStringNotNull" minOccurs="0" maxOccurs="4"/>
503
+ <xsd:element name="PDABaseModel" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
504
+ <xsd:element name="DigitalMediaFormat" type="StringNotNull" minOccurs="0"/>
505
+ <xsd:element name="HomeAutomationCommunicationDevice" type="ThirtyStringNotNull" minOccurs="0"/>
506
+ <xsd:element name="DigitalAudioCapacity" type="TwentyStringNotNull" minOccurs="0"/>
507
+ <xsd:element name="HolderCapacity" type="TwentyStringNotNull" minOccurs="0"/>
508
+ <xsd:element name="MemorySlotsAvailable" type="StringNotNull" minOccurs="0"/>
509
+ <xsd:element name="RAMSize" type="MemorySizeDimension" minOccurs="0"/>
510
+ <xsd:element name="ScreenResolution" type="FortyStringNotNull" minOccurs="0"/>
511
+ <xsd:element name="ColorScreen" type="xsd:boolean" minOccurs="0"/>
512
+ <xsd:element name="ScreenSize" type="LengthDimension" minOccurs="0"/>
513
+ <xsd:element name="WirelessType" type="FortyStringNotNull" minOccurs="0" maxOccurs="3"/>
514
+ <xsd:element name="HardDriveSize" type="MemorySizeDimension" minOccurs="0" maxOccurs="8"/>
515
+ <xsd:element name="HardDriveInterface" type="FortyStringNotNull" minOccurs="0" maxOccurs="4"/>
516
+ <xsd:element name="OperatingSystem" type="MediumStringNotNull" minOccurs="0" maxOccurs="5"/>
517
+ <xsd:element name="HardwarePlatform" type="MediumStringNotNull" minOccurs="0"/>
518
+ <xsd:element name="ComputerMemoryType" type="StringNotNull" minOccurs="0" maxOccurs="10"/>
519
+ <xsd:element name="ItemPackageQuantity" type="xsd:positiveInteger" minOccurs="0"/>
520
+ <xsd:element name="PurchasingFeeRefSKU" type="SKUType" minOccurs="0"/>
521
+ </xsd:sequence>
522
+ </xsd:complexType>
523
+ </xsd:element>
524
+ <!--
525
+ ########################################################################################
526
+ # Graphics Card Definitions
527
+ ########################################################################################
528
+ -->
529
+ <xsd:element name="GraphicsCard">
530
+ <xsd:complexType>
531
+ <xsd:sequence>
532
+ <xsd:element name="GraphicsCardDescription" type="MediumStringNotNull"/>
533
+ <xsd:element name="GraphicsCardRamSize" type="MemorySizeDimension"/>
534
+ <xsd:element name="GraphicsCardInterface" type="TwentyStringNotNull"/>
535
+ </xsd:sequence>
536
+ </xsd:complexType>
537
+ </xsd:element>
538
+ <xsd:complexType name="Connection">
539
+ <xsd:sequence>
540
+ <xsd:element name="ConnectionType" type="String"/>
541
+ <xsd:element name="NumberOfConnections" type="xsd:positiveInteger"/>
542
+ </xsd:sequence>
543
+ </xsd:complexType>
544
+ </xsd:schema>