cdon_feed_validator 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5fe6ac6e8244a64014872acad4642de39af4abbdb82628efa3b7f2700b642639
4
+ data.tar.gz: a4027b4bf08ae80f2d94a13122c63dbc864957083d44b349fbe3a6b337aac237
5
+ SHA512:
6
+ metadata.gz: 5ebe6d535c630833bc8d2f428a928e3f68c96472f27b7e52cc48a3d3888052a8412dffe73e077ba0a2cb8e3cd75855974ecd25bc93efdd848780c319b68b8077
7
+ data.tar.gz: 99331bdebaed13422e231d3049a96f6c71107344e823832e82274b71551f68f3fc87629122105e4b4e3d197d7de52c2005d2023bd660ab90e5e65590747337c2
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.1
7
+ before_install: gem install bundler -v 1.17.0
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in cdon_feed_validator.gemspec
6
+ gemspec
@@ -0,0 +1,94 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ cdon_feed_validator (1.0.0)
5
+ activesupport (~> 5.2)
6
+ nokogiri (~> 1.8)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (5.2.1)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 0.7, < 2)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ coderay (1.1.2)
17
+ concurrent-ruby (1.0.5)
18
+ diff-lcs (1.3)
19
+ ffi (1.9.25)
20
+ formatador (0.2.5)
21
+ guard (2.14.2)
22
+ formatador (>= 0.2.4)
23
+ listen (>= 2.7, < 4.0)
24
+ lumberjack (>= 1.0.12, < 2.0)
25
+ nenv (~> 0.1)
26
+ notiffany (~> 0.0)
27
+ pry (>= 0.9.12)
28
+ shellany (~> 0.0)
29
+ thor (>= 0.18.1)
30
+ guard-compat (1.2.1)
31
+ guard-rspec (4.7.3)
32
+ guard (~> 2.1)
33
+ guard-compat (~> 1.1)
34
+ rspec (>= 2.99.0, < 4.0)
35
+ i18n (1.1.1)
36
+ concurrent-ruby (~> 1.0)
37
+ listen (3.1.5)
38
+ rb-fsevent (~> 0.9, >= 0.9.4)
39
+ rb-inotify (~> 0.9, >= 0.9.7)
40
+ ruby_dep (~> 1.2)
41
+ lumberjack (1.0.13)
42
+ method_source (0.9.0)
43
+ mini_portile2 (2.3.0)
44
+ minitest (5.11.3)
45
+ nenv (0.3.0)
46
+ nokogiri (1.8.5)
47
+ mini_portile2 (~> 2.3.0)
48
+ notiffany (0.1.1)
49
+ nenv (~> 0.1)
50
+ shellany (~> 0.0)
51
+ pry (0.11.3)
52
+ coderay (~> 1.1.0)
53
+ method_source (~> 0.9.0)
54
+ rake (10.5.0)
55
+ rb-fsevent (0.10.3)
56
+ rb-inotify (0.9.10)
57
+ ffi (>= 0.5.0, < 2)
58
+ rspec (3.8.0)
59
+ rspec-core (~> 3.8.0)
60
+ rspec-expectations (~> 3.8.0)
61
+ rspec-mocks (~> 3.8.0)
62
+ rspec-core (3.8.0)
63
+ rspec-support (~> 3.8.0)
64
+ rspec-expectations (3.8.2)
65
+ diff-lcs (>= 1.2.0, < 2.0)
66
+ rspec-support (~> 3.8.0)
67
+ rspec-its (1.2.0)
68
+ rspec-core (>= 3.0.0)
69
+ rspec-expectations (>= 3.0.0)
70
+ rspec-mocks (3.8.0)
71
+ diff-lcs (>= 1.2.0, < 2.0)
72
+ rspec-support (~> 3.8.0)
73
+ rspec-support (3.8.0)
74
+ ruby_dep (1.5.0)
75
+ shellany (0.0.1)
76
+ thor (0.20.0)
77
+ thread_safe (0.3.6)
78
+ tzinfo (1.2.5)
79
+ thread_safe (~> 0.1)
80
+
81
+ PLATFORMS
82
+ ruby
83
+
84
+ DEPENDENCIES
85
+ bundler (~> 1.17)
86
+ cdon_feed_validator!
87
+ guard (~> 2.14)
88
+ guard-rspec (~> 4.7)
89
+ rake (~> 10.0)
90
+ rspec (~> 3.0)
91
+ rspec-its (~> 1.2)
92
+
93
+ BUNDLED WITH
94
+ 1.17.0
@@ -0,0 +1,70 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ # Note: The cmd option is now required due to the increasing number of ways
19
+ # rspec may be run, below are examples of the most common uses.
20
+ # * bundler: 'bundle exec rspec'
21
+ # * bundler binstubs: 'bin/rspec'
22
+ # * spring: 'bin/rspec' (This will use spring if running and you have
23
+ # installed the spring binstubs per the docs)
24
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
25
+ # * 'just' rspec: 'rspec'
26
+
27
+ guard :rspec, cmd: 'bundle exec rspec', all_after_pass: true do
28
+ require 'guard/rspec/dsl'
29
+ dsl = Guard::RSpec::Dsl.new(self)
30
+
31
+ # Feel free to open issues for suggestions and improvements
32
+
33
+ # RSpec files
34
+ rspec = dsl.rspec
35
+ watch(rspec.spec_helper) { rspec.spec_dir }
36
+ watch(rspec.spec_support) { rspec.spec_dir }
37
+ watch(rspec.spec_files)
38
+
39
+ # Ruby files
40
+ ruby = dsl.ruby
41
+ dsl.watch_spec_files_for(ruby.lib_files)
42
+
43
+ # Rails files
44
+ rails = dsl.rails(view_extensions: %w(erb haml slim))
45
+ dsl.watch_spec_files_for(rails.app_files)
46
+ dsl.watch_spec_files_for(rails.views)
47
+
48
+ watch(rails.controllers) do |m|
49
+ [
50
+ rspec.spec.call("routing/#{m[1]}_routing"),
51
+ rspec.spec.call("controllers/#{m[1]}_controller"),
52
+ rspec.spec.call("acceptance/#{m[1]}")
53
+ ]
54
+ end
55
+
56
+ # Rails config changes
57
+ watch(rails.spec_helper) { rspec.spec_dir }
58
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
59
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
60
+
61
+ # Capybara features specs
62
+ watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") }
63
+ watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") }
64
+
65
+ # Turnip features and steps
66
+ watch(%r{^spec/acceptance/(.+)\.feature$})
67
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
68
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
69
+ end
70
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Emil Kampp
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # CdonFeedValidator
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cdon_feed_validator`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'cdon_feed_validator'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install cdon_feed_validator
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cdon_feed_validator.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cdon_feed_validator"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,48 @@
1
+
2
+ $LOAD_PATH << File.expand_path('lib', __dir__)
3
+
4
+ require 'cdon_feed_validator'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'cdon_feed_validator'
8
+ spec.version = CDONFeedValidator::VERSION
9
+ spec.authors = ['Emil Kampp']
10
+ spec.email = ['emil@kampp.me']
11
+
12
+ spec.summary = 'Validate CDON XML feeds'
13
+ spec.description = 'Validate CDON XML feeds'
14
+ spec.homepage = 'https://cdon.com'
15
+ spec.license = 'MIT'
16
+
17
+ # # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+
22
+ # spec.metadata["homepage_uri"] = spec.homepage
23
+ # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
24
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
25
+ # else
26
+ # raise "RubyGems 2.0 or newer is required to protect against " \
27
+ # "public gem pushes."
28
+ # end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.17"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ spec.add_development_dependency "rspec", "~> 3.0"
42
+ spec.add_development_dependency "rspec-its", "~> 1.2"
43
+ spec.add_development_dependency "guard", "~> 2.14"
44
+ spec.add_development_dependency "guard-rspec", "~> 4.7"
45
+
46
+ spec.add_runtime_dependency "activesupport", "~> 5.2"
47
+ spec.add_runtime_dependency 'nokogiri', '~> 1.8'
48
+ end
Binary file
@@ -0,0 +1,13 @@
1
+ require 'active_support/all'
2
+
3
+ $LOAD_PATH << File.expand_path('cdon_feed_validator', __dir__)
4
+
5
+ module CDONFeedValidator
6
+ VERSION = '1.0.0'
7
+
8
+ Error = Class.new StandardError
9
+
10
+ autoload :Validator, 'validator'
11
+ autoload :Product, 'product'
12
+ autoload :Category, 'category'
13
+ end
@@ -0,0 +1,11 @@
1
+ require_relative './validator'
2
+
3
+ module CDONFeedValidator
4
+ class Product < Validator
5
+ private
6
+
7
+ def filename
8
+ 'product.xsd'
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,44 @@
1
+ require 'nokogiri'
2
+
3
+ module CDONFeedValidator
4
+ class Validator
5
+ XSDDIR = File.expand_path('../xsd', __dir__)
6
+
7
+ attr_reader :xml, :options, :errors
8
+
9
+ def initialize(xml, **options)
10
+ @xml = Nokogiri::XML xml
11
+ @options = options.as_json
12
+ @errors = []
13
+ end
14
+
15
+ def valid?
16
+ validate
17
+ errors.empty?
18
+ end
19
+
20
+ def validate
21
+ @errors = file
22
+ .validate(xml)
23
+ .map(&:to_s) || []
24
+ end
25
+
26
+ private
27
+
28
+ def filename
29
+ raise NotImplementedError, 'must be implemented by descendents'
30
+ end
31
+
32
+ def file
33
+ string = File.read File.expand_path filename, XSDDIR
34
+
35
+ # Replace schema location references with ones pointing to local xsd
36
+ # files
37
+ string.gsub! \
38
+ 'schemaLocation="',
39
+ "schemaLocation=\"#{XSDDIR}/"
40
+
41
+ Nokogiri::XML::Schema string
42
+ end
43
+ end
44
+ end
Binary file
@@ -0,0 +1,1986 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
+ <xs:include schemaLocation="types.xsd" />
4
+ <xs:simpleType name="UnitQuantity">
5
+ <xs:restriction base="xs:int" />
6
+ </xs:simpleType>
7
+ <xs:simpleType name="action_camera_functions">
8
+ <xs:restriction base="xs:token">
9
+ <xs:enumeration value="action_camera_functions_display" />
10
+ <xs:enumeration value="action_camera_functions_gps" />
11
+ <xs:enumeration value="action_camera_functions_microphone" />
12
+ <xs:enumeration value="action_camera_functions_waterproof" />
13
+ <xs:enumeration value="action_camera_functions_wifi" />
14
+ </xs:restriction>
15
+ </xs:simpleType>
16
+ <xs:simpleType name="aspect_ratio">
17
+ <xs:restriction base="xs:token">
18
+ <xs:enumeration value="aspect_ratio_1_1" />
19
+ <xs:enumeration value="aspect_ratio_14_5" />
20
+ <xs:enumeration value="aspect_ratio_15_9" />
21
+ <xs:enumeration value="aspect_ratio_16_10" />
22
+ <xs:enumeration value="aspect_ratio_16_4" />
23
+ <xs:enumeration value="aspect_ratio_16_9" />
24
+ <xs:enumeration value="aspect_ratio_17_9" />
25
+ <xs:enumeration value="aspect_ratio_2_35_1" />
26
+ <xs:enumeration value="aspect_ratio_2_37_1" />
27
+ <xs:enumeration value="aspect_ratio_21_9" />
28
+ <xs:enumeration value="aspect_ratio_4_3" />
29
+ <xs:enumeration value="aspect_ratio_5_4" />
30
+ </xs:restriction>
31
+ </xs:simpleType>
32
+ <xs:simpleType name="battery_type">
33
+ <xs:restriction base="xs:token">
34
+ <xs:enumeration value="battery_type_1_2aa" />
35
+ <xs:enumeration value="battery_type_2_3aa" />
36
+ <xs:enumeration value="battery_type_2cr5" />
37
+ <xs:enumeration value="battery_type_a" />
38
+ <xs:enumeration value="battery_type_a23" />
39
+ <xs:enumeration value="battery_type_a27" />
40
+ <xs:enumeration value="battery_type_aa" />
41
+ <xs:enumeration value="battery_type_aaa" />
42
+ <xs:enumeration value="battery_type_aaaa" />
43
+ <xs:enumeration value="battery_type_b" />
44
+ <xs:enumeration value="battery_type_ba5800" />
45
+ <xs:enumeration value="battery_type_c" />
46
+ <xs:enumeration value="battery_type_cr_p2" />
47
+ <xs:enumeration value="battery_type_cr_v3" />
48
+ <xs:enumeration value="battery_type_cr1025" />
49
+ <xs:enumeration value="battery_type_cr1216" />
50
+ <xs:enumeration value="battery_type_cr1220" />
51
+ <xs:enumeration value="battery_type_cr1225" />
52
+ <xs:enumeration value="battery_type_cr123" />
53
+ <xs:enumeration value="battery_type_cr123a" />
54
+ <xs:enumeration value="battery_type_cr1616" />
55
+ <xs:enumeration value="battery_type_cr1620" />
56
+ <xs:enumeration value="battery_type_cr1632" />
57
+ <xs:enumeration value="battery_type_cr2" />
58
+ <xs:enumeration value="battery_type_cr2012" />
59
+ <xs:enumeration value="battery_type_cr927" />
60
+ <xs:enumeration value="battery_type_d" />
61
+ <xs:enumeration value="battery_type_f" />
62
+ <xs:enumeration value="battery_type_j" />
63
+ <xs:enumeration value="battery_type_n" />
64
+ <xs:enumeration value="battery_type_pp1" />
65
+ <xs:enumeration value="battery_type_pp10" />
66
+ <xs:enumeration value="battery_type_pp11" />
67
+ <xs:enumeration value="battery_type_pp3" />
68
+ <xs:enumeration value="battery_type_pp4" />
69
+ <xs:enumeration value="battery_type_pp6" />
70
+ <xs:enumeration value="battery_type_pp7" />
71
+ <xs:enumeration value="battery_type_pp8" />
72
+ <xs:enumeration value="battery_type_pp9" />
73
+ <xs:enumeration value="battery_type_sub_c" />
74
+ </xs:restriction>
75
+ </xs:simpleType>
76
+ <xs:simpleType name="bluetooth_version">
77
+ <xs:restriction base="xs:token">
78
+ <xs:enumeration value="bluetooth_version_1_2" />
79
+ <xs:enumeration value="bluetooth_version_2_0" />
80
+ <xs:enumeration value="bluetooth_version_2_1" />
81
+ <xs:enumeration value="bluetooth_version_3_0" />
82
+ <xs:enumeration value="bluetooth_version_3_1" />
83
+ <xs:enumeration value="bluetooth_version_4_0" />
84
+ <xs:enumeration value="bluetooth_version_4_1" />
85
+ <xs:enumeration value="bluetooth_version_4_2" />
86
+ </xs:restriction>
87
+ </xs:simpleType>
88
+ <xs:simpleType name="camera_light_technology">
89
+ <xs:restriction base="xs:token">
90
+ <xs:enumeration value="hmi" />
91
+ <xs:enumeration value="tungsten" />
92
+ </xs:restriction>
93
+ </xs:simpleType>
94
+ <xs:simpleType name="chipset">
95
+ <xs:restriction base="xs:token">
96
+ <xs:enumeration value="chipset_amd_760g" />
97
+ <xs:enumeration value="chipset_amd_970" />
98
+ <xs:enumeration value="chipset_amd_990fx" />
99
+ <xs:enumeration value="chipset_amd_990x" />
100
+ <xs:enumeration value="chipset_amd_a50m" />
101
+ <xs:enumeration value="chipset_amd_a55" />
102
+ <xs:enumeration value="chipset_amd_a55_fch" />
103
+ <xs:enumeration value="chipset_amd_a58" />
104
+ <xs:enumeration value="chipset_amd_a68" />
105
+ <xs:enumeration value="chipset_amd_a68h" />
106
+ <xs:enumeration value="chipset_amd_a68m" />
107
+ <xs:enumeration value="chipset_amd_a70m" />
108
+ <xs:enumeration value="chipset_amd_a75" />
109
+ <xs:enumeration value="chipset_amd_a75_fch" />
110
+ <xs:enumeration value="chipset_amd_a76m" />
111
+ <xs:enumeration value="chipset_amd_a76m_fch" />
112
+ <xs:enumeration value="chipset_amd_a78" />
113
+ <xs:enumeration value="chipset_amd_a78_bolton_d3" />
114
+ <xs:enumeration value="chipset_amd_a78_fch" />
115
+ <xs:enumeration value="chipset_amd_a85x" />
116
+ <xs:enumeration value="chipset_amd_a85x_hudson_d4" />
117
+ <xs:enumeration value="chipset_amd_a88x" />
118
+ <xs:enumeration value="chipset_amd_a88x_bolton_d4" />
119
+ <xs:enumeration value="chipset_amd_a88x_fch" />
120
+ <xs:enumeration value="chipset_amd_d3" />
121
+ <xs:enumeration value="chipset_amd_d4" />
122
+ <xs:enumeration value="chipset_ati_radeon" />
123
+ <xs:enumeration value="chipset_ati_xpress_200" />
124
+ <xs:enumeration value="chipset_intel_5520" />
125
+ <xs:enumeration value="chipset_intel_b150_express" />
126
+ <xs:enumeration value="chipset_intel_b75_express" />
127
+ <xs:enumeration value="chipset_intel_b85" />
128
+ <xs:enumeration value="chipset_intel_b85_express" />
129
+ <xs:enumeration value="chipset_intel_c202" />
130
+ <xs:enumeration value="chipset_intel_c224" />
131
+ <xs:enumeration value="chipset_intel_c226" />
132
+ <xs:enumeration value="chipset_intel_c236" />
133
+ <xs:enumeration value="chipset_intel_c602" />
134
+ <xs:enumeration value="chipset_intel_c606" />
135
+ <xs:enumeration value="chipset_intel_c612" />
136
+ <xs:enumeration value="chipset_intel_cm236_express" />
137
+ <xs:enumeration value="chipset_intel_h110_express" />
138
+ <xs:enumeration value="chipset_intel_h170_express" />
139
+ <xs:enumeration value="chipset_intel_h61" />
140
+ <xs:enumeration value="chipset_intel_h61_express" />
141
+ <xs:enumeration value="chipset_intel_h77_express" />
142
+ <xs:enumeration value="chipset_intel_h81" />
143
+ <xs:enumeration value="chipset_intel_h81_express" />
144
+ <xs:enumeration value="chipset_intel_h87_express" />
145
+ <xs:enumeration value="chipset_intel_h97" />
146
+ <xs:enumeration value="chipset_intel_h97_express" />
147
+ <xs:enumeration value="chipset_intel_hm170" />
148
+ <xs:enumeration value="chipset_intel_hm65_express" />
149
+ <xs:enumeration value="chipset_intel_hm67_express" />
150
+ <xs:enumeration value="chipset_intel_hm70_express" />
151
+ <xs:enumeration value="chipset_intel_hm75_express" />
152
+ <xs:enumeration value="chipset_intel_hm76_express" />
153
+ <xs:enumeration value="chipset_intel_hm77_express" />
154
+ <xs:enumeration value="chipset_intel_hm86_express" />
155
+ <xs:enumeration value="chipset_intel_hm87_express" />
156
+ <xs:enumeration value="chipset_intel_nm10_express" />
157
+ <xs:enumeration value="chipset_intel_nm70_express" />
158
+ <xs:enumeration value="chipset_intel_p55_express" />
159
+ <xs:enumeration value="chipset_intel_p67_express" />
160
+ <xs:enumeration value="chipset_intel_q150_express" />
161
+ <xs:enumeration value="chipset_intel_q170_express" />
162
+ <xs:enumeration value="chipset_intel_q67_express" />
163
+ <xs:enumeration value="chipset_intel_q77_express" />
164
+ <xs:enumeration value="chipset_intel_q85_express" />
165
+ <xs:enumeration value="chipset_intel_q87" />
166
+ <xs:enumeration value="chipset_intel_q87_express" />
167
+ <xs:enumeration value="chipset_intel_qm170" />
168
+ <xs:enumeration value="chipset_intel_qm77_express" />
169
+ <xs:enumeration value="chipset_intel_qm87_express" />
170
+ <xs:enumeration value="chipset_intel_qs67_express" />
171
+ <xs:enumeration value="chipset_intel_qs77_express" />
172
+ <xs:enumeration value="chipset_intel_x58_express" />
173
+ <xs:enumeration value="chipset_intel_x79_express" />
174
+ <xs:enumeration value="chipset_intel_x99" />
175
+ <xs:enumeration value="chipset_intel_x99_express" />
176
+ <xs:enumeration value="chipset_intel_z170_express" />
177
+ <xs:enumeration value="chipset_intel_z68_express" />
178
+ <xs:enumeration value="chipset_intel_z75_express" />
179
+ <xs:enumeration value="chipset_intel_z77_express" />
180
+ <xs:enumeration value="chipset_intel_z87" />
181
+ <xs:enumeration value="chipset_intel_z87_express" />
182
+ <xs:enumeration value="chipset_intel_z97" />
183
+ <xs:enumeration value="chipset_intel_z97_express" />
184
+ <xs:enumeration value="chipset_nividia_geforce" />
185
+ <xs:enumeration value="chipset_nividia_nforce" />
186
+ <xs:enumeration value="chipset_nividia_nforce2" />
187
+ <xs:enumeration value="chipset_nividia_nforce3" />
188
+ <xs:enumeration value="chipset_nividia_nforce4" />
189
+ <xs:enumeration value="chipset_via_vx900" />
190
+ </xs:restriction>
191
+ </xs:simpleType>
192
+ <xs:simpleType name="color_group">
193
+ <xs:restriction base="xs:token">
194
+ <xs:enumeration value="color_group_beige" />
195
+ <xs:enumeration value="color_group_black" />
196
+ <xs:enumeration value="color_group_blue" />
197
+ <xs:enumeration value="color_group_brown" />
198
+ <xs:enumeration value="color_group_copper" />
199
+ <xs:enumeration value="color_group_dark_blue" />
200
+ <xs:enumeration value="color_group_dark_brown" />
201
+ <xs:enumeration value="color_group_dark_green" />
202
+ <xs:enumeration value="color_group_dark_grey" />
203
+ <xs:enumeration value="color_group_dark_orange" />
204
+ <xs:enumeration value="color_group_dark_pink" />
205
+ <xs:enumeration value="color_group_dark_purple" />
206
+ <xs:enumeration value="color_group_dark_red" />
207
+ <xs:enumeration value="color_group_dark_yellow" />
208
+ <xs:enumeration value="color_group_gold" />
209
+ <xs:enumeration value="color_group_green" />
210
+ <xs:enumeration value="color_group_grey" />
211
+ <xs:enumeration value="color_group_light_blue" />
212
+ <xs:enumeration value="color_group_light_brown" />
213
+ <xs:enumeration value="color_group_light_green" />
214
+ <xs:enumeration value="color_group_light_grey" />
215
+ <xs:enumeration value="color_group_light_orange" />
216
+ <xs:enumeration value="color_group_light_pink" />
217
+ <xs:enumeration value="color_group_light_purple" />
218
+ <xs:enumeration value="color_group_light_red" />
219
+ <xs:enumeration value="color_group_light_yellow" />
220
+ <xs:enumeration value="color_group_metallic" />
221
+ <xs:enumeration value="color_group_multicolor" />
222
+ <xs:enumeration value="color_group_orange" />
223
+ <xs:enumeration value="color_group_pink" />
224
+ <xs:enumeration value="color_group_purple" />
225
+ <xs:enumeration value="color_group_red" />
226
+ <xs:enumeration value="color_group_silver" />
227
+ <xs:enumeration value="color_group_transparent" />
228
+ <xs:enumeration value="color_group_turquoise" />
229
+ <xs:enumeration value="color_group_white" />
230
+ <xs:enumeration value="color_group_wood" />
231
+ <xs:enumeration value="color_group_yellow" />
232
+ </xs:restriction>
233
+ </xs:simpleType>
234
+ <xs:simpleType name="compatible_operating_system">
235
+ <xs:restriction base="stringNotNull" />
236
+ </xs:simpleType>
237
+ <xs:simpleType name="compatible_platform">
238
+ <xs:restriction base="xs:token">
239
+ <xs:enumeration value="compatible_platform_android" />
240
+ <xs:enumeration value="compatible_platform_apple_ios" />
241
+ <xs:enumeration value="compatible_platform_game_console" />
242
+ <xs:enumeration value="compatible_platform_mac" />
243
+ <xs:enumeration value="compatible_platform_pc" />
244
+ <xs:enumeration value="compatible_platform_unix" />
245
+ </xs:restriction>
246
+ </xs:simpleType>
247
+ <xs:simpleType name="compatiblecellphonemodel">
248
+ <xs:restriction base="xs:token">
249
+ <xs:enumeration value="apple_iphone_3gs" />
250
+ <xs:enumeration value="apple_iphone_4" />
251
+ <xs:enumeration value="apple_iphone_4s" />
252
+ <xs:enumeration value="apple_iphone_5" />
253
+ <xs:enumeration value="apple_iphone_5c" />
254
+ <xs:enumeration value="apple_iphone_5s" />
255
+ <xs:enumeration value="apple_iphone_6" />
256
+ <xs:enumeration value="apple_iphone_6_plus" />
257
+ <xs:enumeration value="apple_iphone_6s" />
258
+ <xs:enumeration value="apple_iphone_6s_plus" />
259
+ <xs:enumeration value="apple_iphone_7" />
260
+ <xs:enumeration value="apple_iphone_7_plus" />
261
+ <xs:enumeration value="apple_iphone_8" />
262
+ <xs:enumeration value="apple_iphone_8_plus" />
263
+ <xs:enumeration value="apple_iphone_se" />
264
+ <xs:enumeration value="apple_iphone_x" />
265
+ <xs:enumeration value="doro_8030" />
266
+ <xs:enumeration value="doro_liberto_825" />
267
+ <xs:enumeration value="google_nexus_4" />
268
+ <xs:enumeration value="google_nexus_5" />
269
+ <xs:enumeration value="google_nexus_6" />
270
+ <xs:enumeration value="google_nexus_g5" />
271
+ <xs:enumeration value="google_nexus_g6" />
272
+ <xs:enumeration value="google_pixel" />
273
+ <xs:enumeration value="google_pixel_xl" />
274
+ <xs:enumeration value="htc_desire_626" />
275
+ <xs:enumeration value="htc_desire_816" />
276
+ <xs:enumeration value="htc_desire_eye" />
277
+ <xs:enumeration value="htc_one" />
278
+ <xs:enumeration value="htc_one_a9s" />
279
+ <xs:enumeration value="htc_one_m10" />
280
+ <xs:enumeration value="htc_one_m7" />
281
+ <xs:enumeration value="htc_one_m8" />
282
+ <xs:enumeration value="htc_one_max" />
283
+ <xs:enumeration value="htc_one_mini" />
284
+ <xs:enumeration value="htc_u11" />
285
+ <xs:enumeration value="huawei_ascend_g7" />
286
+ <xs:enumeration value="huawei_ascend_mate_7" />
287
+ <xs:enumeration value="huawei_ascend_p7" />
288
+ <xs:enumeration value="huawei_honor_4x" />
289
+ <xs:enumeration value="huawei_honor_5" />
290
+ <xs:enumeration value="huawei_honor_5x" />
291
+ <xs:enumeration value="huawei_honor_6x" />
292
+ <xs:enumeration value="huawei_honor_7" />
293
+ <xs:enumeration value="huawei_honor_7_lite" />
294
+ <xs:enumeration value="huawei_honor_8_lite" />
295
+ <xs:enumeration value="huawei_honor_9" />
296
+ <xs:enumeration value="huawei_mate_10" />
297
+ <xs:enumeration value="huawei_mate_10_pro" />
298
+ <xs:enumeration value="huawei_nexus_6p" />
299
+ <xs:enumeration value="huawei_p_smart" />
300
+ <xs:enumeration value="huawei_p10_lite" />
301
+ <xs:enumeration value="huawei_p8_lite" />
302
+ <xs:enumeration value="huawei_p9_plus" />
303
+ <xs:enumeration value="huawei_y5ii" />
304
+ <xs:enumeration value="huawei_y6_pro" />
305
+ <xs:enumeration value="lg_g2" />
306
+ <xs:enumeration value="lg_g3" />
307
+ <xs:enumeration value="lg_g4" />
308
+ <xs:enumeration value="lg_g6" />
309
+ <xs:enumeration value="lg_gflex" />
310
+ <xs:enumeration value="lg_k10" />
311
+ <xs:enumeration value="lg_k10_2017" />
312
+ <xs:enumeration value="lg_k4_2017" />
313
+ <xs:enumeration value="lg_k8_2017" />
314
+ <xs:enumeration value="lg_nexus_5x" />
315
+ <xs:enumeration value="lg_optimus_g" />
316
+ <xs:enumeration value="lg_q6" />
317
+ <xs:enumeration value="lg_v30" />
318
+ <xs:enumeration value="motorola_droid_turbo" />
319
+ <xs:enumeration value="motorola_moto_g2" />
320
+ <xs:enumeration value="motorola_moto_g5" />
321
+ <xs:enumeration value="motorola_moto_g5_plus" />
322
+ <xs:enumeration value="motorola_moto_g5s_plus" />
323
+ <xs:enumeration value="motorola_moto_g6" />
324
+ <xs:enumeration value="motorola_moto_g6_plus" />
325
+ <xs:enumeration value="motorola_moto_x" />
326
+ <xs:enumeration value="motorola_moto_x2" />
327
+ <xs:enumeration value="nokia_lumia_1020" />
328
+ <xs:enumeration value="nokia_lumia_1320" />
329
+ <xs:enumeration value="nokia_lumia_1520" />
330
+ <xs:enumeration value="nokia_lumia_620" />
331
+ <xs:enumeration value="nokia_lumia_625" />
332
+ <xs:enumeration value="nokia_lumia_730" />
333
+ <xs:enumeration value="nokia_lumia_830" />
334
+ <xs:enumeration value="nokia_lumia_920" />
335
+ <xs:enumeration value="nokia_lumia_925" />
336
+ <xs:enumeration value="nokia_lumia_928" />
337
+ <xs:enumeration value="nokia_lumia_930" />
338
+ <xs:enumeration value="oneplus_one" />
339
+ <xs:enumeration value="samsung_galaxy_a3" />
340
+ <xs:enumeration value="samsung_galaxy_a3_2016" />
341
+ <xs:enumeration value="samsung_galaxy_a3_2017" />
342
+ <xs:enumeration value="samsung_galaxy_a5" />
343
+ <xs:enumeration value="samsung_galaxy_a5_2016" />
344
+ <xs:enumeration value="samsung_galaxy_a5_2017" />
345
+ <xs:enumeration value="samsung_galaxy_a7_2017" />
346
+ <xs:enumeration value="samsung_galaxy_a8" />
347
+ <xs:enumeration value="samsung_galaxy_alpha" />
348
+ <xs:enumeration value="samsung_galaxy_j3_2016" />
349
+ <xs:enumeration value="samsung_galaxy_j3_2017" />
350
+ <xs:enumeration value="samsung_galaxy_j5_2016" />
351
+ <xs:enumeration value="samsung_galaxy_j5_2017" />
352
+ <xs:enumeration value="samsung_galaxy_note_2" />
353
+ <xs:enumeration value="samsung_galaxy_note_3" />
354
+ <xs:enumeration value="samsung_galaxy_note_4" />
355
+ <xs:enumeration value="samsung_galaxy_note_5" />
356
+ <xs:enumeration value="samsung_galaxy_note_7" />
357
+ <xs:enumeration value="samsung_galaxy_note_8" />
358
+ <xs:enumeration value="samsung_galaxy_s2" />
359
+ <xs:enumeration value="samsung_galaxy_s3" />
360
+ <xs:enumeration value="samsung_galaxy_s4" />
361
+ <xs:enumeration value="samsung_galaxy_s4_active" />
362
+ <xs:enumeration value="samsung_galaxy_s4_mini" />
363
+ <xs:enumeration value="samsung_galaxy_s5" />
364
+ <xs:enumeration value="samsung_galaxy_s5_active" />
365
+ <xs:enumeration value="samsung_galaxy_s5_mini" />
366
+ <xs:enumeration value="samsung_galaxy_s6" />
367
+ <xs:enumeration value="samsung_galaxy_s6_edge" />
368
+ <xs:enumeration value="samsung_galaxy_s7" />
369
+ <xs:enumeration value="samsung_galaxy_s7_active" />
370
+ <xs:enumeration value="samsung_galaxy_s7_edge" />
371
+ <xs:enumeration value="samsung_galaxy_s8" />
372
+ <xs:enumeration value="samsung_galaxy_s8_plus" />
373
+ <xs:enumeration value="samsung_galaxy_s9" />
374
+ <xs:enumeration value="samsung_galaxy_s9_plus" />
375
+ <xs:enumeration value="samsung_galaxy_xcover_3" />
376
+ <xs:enumeration value="samsung_galaxy_xcover_4" />
377
+ <xs:enumeration value="sony_xperia_e1" />
378
+ <xs:enumeration value="sony_xperia_e5" />
379
+ <xs:enumeration value="sony_xperia_l1" />
380
+ <xs:enumeration value="sony_xperia_m2" />
381
+ <xs:enumeration value="sony_xperia_m5" />
382
+ <xs:enumeration value="sony_xperia_x_compact" />
383
+ <xs:enumeration value="sony_xperia_xa1_plus" />
384
+ <xs:enumeration value="sony_xperia_xa1_ultra" />
385
+ <xs:enumeration value="sony_xperia_xa2" />
386
+ <xs:enumeration value="sony_xperia_xa2_ultra" />
387
+ <xs:enumeration value="sony_xperia_xz" />
388
+ <xs:enumeration value="sony_xperia_xz_premium" />
389
+ <xs:enumeration value="sony_xperia_xz1" />
390
+ <xs:enumeration value="sony_xperia_xz1_compact" />
391
+ <xs:enumeration value="sony_xperia_z1" />
392
+ <xs:enumeration value="sony_xperia_z1_compact" />
393
+ <xs:enumeration value="sony_xperia_z2" />
394
+ <xs:enumeration value="sony_xperia_z3" />
395
+ <xs:enumeration value="sony_xperia_z3_compact" />
396
+ <xs:enumeration value="sony_xperia_z5" />
397
+ <xs:enumeration value="sony_xperia_z5_premium" />
398
+ <xs:enumeration value="sony_xperia_zr" />
399
+ <xs:enumeration value="zte_blade_3" />
400
+ <xs:enumeration value="zte_blade_s6" />
401
+ <xs:enumeration value="zte_blade_vec_4g" />
402
+ <xs:enumeration value="zte_nubia_z5" />
403
+ </xs:restriction>
404
+ </xs:simpleType>
405
+ <xs:simpleType name="computer_microphone_usage">
406
+ <xs:restriction base="xs:token">
407
+ <xs:enumeration value="broadcasting" />
408
+ <xs:enumeration value="instruments" />
409
+ <xs:enumeration value="measuring" />
410
+ <xs:enumeration value="song" />
411
+ <xs:enumeration value="table_microphone" />
412
+ <xs:enumeration value="video_camera" />
413
+ </xs:restriction>
414
+ </xs:simpleType>
415
+ <xs:simpleType name="cpu_support">
416
+ <xs:restriction base="xs:token">
417
+ <xs:enumeration value="bits_32" />
418
+ <xs:enumeration value="bits_32_or_64" />
419
+ <xs:enumeration value="bits_64" />
420
+ </xs:restriction>
421
+ </xs:simpleType>
422
+ <xs:simpleType name="da_audio">
423
+ <xs:restriction base="xs:token">
424
+ <xs:enumeration value="sampling_16bit_44_1khz" />
425
+ <xs:enumeration value="sampling_16bit_48khz" />
426
+ <xs:enumeration value="sampling_1bit" />
427
+ <xs:enumeration value="sampling_24bit_192khz" />
428
+ <xs:enumeration value="sampling_24bit_48khz" />
429
+ <xs:enumeration value="sampling_24bit_96khz" />
430
+ </xs:restriction>
431
+ </xs:simpleType>
432
+ <xs:simpleType name="data_link_layer">
433
+ <xs:restriction base="xs:token">
434
+ <xs:enumeration value="data_link_layer_ethernet" />
435
+ <xs:enumeration value="data_link_layer_fastethernet" />
436
+ <xs:enumeration value="data_link_layer_gigabitethernet" />
437
+ <xs:enumeration value="data_link_layer_ieee802_11a" />
438
+ <xs:enumeration value="data_link_layer_ieee802_11ac" />
439
+ <xs:enumeration value="data_link_layer_ieee802_11b" />
440
+ <xs:enumeration value="data_link_layer_ieee802_11g" />
441
+ <xs:enumeration value="data_link_layer_ieee802_11n" />
442
+ <xs:enumeration value="data_link_layer_ieee802_11ndraft" />
443
+ <xs:enumeration value="data_link_layer_ieee802_1x" />
444
+ </xs:restriction>
445
+ </xs:simpleType>
446
+ <xs:simpleType name="data_storage_type">
447
+ <xs:restriction base="xs:token">
448
+ <xs:enumeration value="blu-ray" />
449
+ <xs:enumeration value="cf" />
450
+ <xs:enumeration value="dvcpro" />
451
+ <xs:enumeration value="flash_drive" />
452
+ <xs:enumeration value="hard_drive" />
453
+ <xs:enumeration value="micro-sd" />
454
+ <xs:enumeration value="mini_dvd_dv" />
455
+ <xs:enumeration value="sd_sdhc_sdxc" />
456
+ <xs:enumeration value="xd" />
457
+ </xs:restriction>
458
+ </xs:simpleType>
459
+ <xs:simpleType name="docking_station_form_factor">
460
+ <xs:restriction base="xs:token">
461
+ <xs:enumeration value="docking_station_form_factor_2_5_inch" />
462
+ <xs:enumeration value="docking_station_form_factor_3_5_inch" />
463
+ </xs:restriction>
464
+ </xs:simpleType>
465
+ <xs:simpleType name="ear_piece_design">
466
+ <xs:restriction base="xs:token">
467
+ <xs:enumeration value="ear_piece_design_fullsize" />
468
+ <xs:enumeration value="ear_piece_design_in_ear" />
469
+ <xs:enumeration value="ear_piece_design_on_ear" />
470
+ </xs:restriction>
471
+ </xs:simpleType>
472
+ <xs:simpleType name="encryption_system">
473
+ <xs:restriction base="xs:token">
474
+ <xs:enumeration value="conax" />
475
+ <xs:enumeration value="cryptoguard" />
476
+ <xs:enumeration value="cryptolite" />
477
+ <xs:enumeration value="irdeto" />
478
+ <xs:enumeration value="viaccess" />
479
+ </xs:restriction>
480
+ </xs:simpleType>
481
+ <xs:simpleType name="external_network_card_type">
482
+ <xs:restriction base="xs:token">
483
+ <xs:enumeration value="external_network_card_type_pci" />
484
+ <xs:enumeration value="external_network_card_type_pci_express" />
485
+ <xs:enumeration value="external_network_card_type_usb" />
486
+ </xs:restriction>
487
+ </xs:simpleType>
488
+ <xs:simpleType name="external_optical_drive_connectivity">
489
+ <xs:restriction base="xs:token">
490
+ <xs:enumeration value="e-sata" />
491
+ <xs:enumeration value="firewire" />
492
+ <xs:enumeration value="ide_pata" />
493
+ <xs:enumeration value="sata" />
494
+ <xs:enumeration value="usb2_0" />
495
+ <xs:enumeration value="usb3_0" />
496
+ </xs:restriction>
497
+ </xs:simpleType>
498
+ <xs:simpleType name="external_optical_drive_format">
499
+ <xs:restriction base="xs:token">
500
+ <xs:enumeration value="cd" />
501
+ <xs:enumeration value="dvd" />
502
+ </xs:restriction>
503
+ </xs:simpleType>
504
+ <xs:simpleType name="external_sound_card_power_management">
505
+ <xs:restriction base="xs:token">
506
+ <xs:enumeration value="mains" />
507
+ <xs:enumeration value="usb" />
508
+ </xs:restriction>
509
+ </xs:simpleType>
510
+ <xs:simpleType name="fittnes_tracker_functions">
511
+ <xs:restriction base="xs:token">
512
+ <xs:enumeration value="heartratemonitor" />
513
+ <xs:enumeration value="sleeptracker" />
514
+ </xs:restriction>
515
+ </xs:simpleType>
516
+ <xs:simpleType name="gps_functions">
517
+ <xs:restriction base="xs:token">
518
+ <xs:enumeration value="compass" />
519
+ <xs:enumeration value="rangefinder" />
520
+ <xs:enumeration value="route_planner" />
521
+ <xs:enumeration value="speedometer" />
522
+ <xs:enumeration value="voice_steering" />
523
+ </xs:restriction>
524
+ </xs:simpleType>
525
+ <xs:simpleType name="graphics_memory_type">
526
+ <xs:restriction base="xs:token">
527
+ <xs:enumeration value="graphics_memory_type_ddr_sdram" />
528
+ <xs:enumeration value="graphics_memory_type_ddr2_sdram" />
529
+ <xs:enumeration value="graphics_memory_type_ddr3_sdram" />
530
+ <xs:enumeration value="graphics_memory_type_ddr3_vram" />
531
+ <xs:enumeration value="graphics_memory_type_ddr3l_sdram" />
532
+ <xs:enumeration value="graphics_memory_type_gddr2_sdram" />
533
+ <xs:enumeration value="graphics_memory_type_gddr3_sdram" />
534
+ <xs:enumeration value="graphics_memory_type_gddr5_sdram" />
535
+ <xs:enumeration value="graphics_memory_type_gddr5x_sdram" />
536
+ <xs:enumeration value="graphics_memory_type_hbm" />
537
+ </xs:restriction>
538
+ </xs:simpleType>
539
+ <xs:simpleType name="graphics_processor_type">
540
+ <xs:restriction base="xs:token">
541
+ <xs:enumeration value="graphics_processor_type_amd_firepro_2270" />
542
+ <xs:enumeration value="graphics_processor_type_amd_firepro_d300" />
543
+ <xs:enumeration value="graphics_processor_type_amd_firepro_d500" />
544
+ <xs:enumeration value="graphics_processor_type_amd_firepro_m4150" />
545
+ <xs:enumeration value="graphics_processor_type_amd_firepro_m4170" />
546
+ <xs:enumeration value="graphics_processor_type_amd_firepro_m5100" />
547
+ <xs:enumeration value="graphics_processor_type_amd_firepro_m6100" />
548
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w2100" />
549
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w4100" />
550
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w4170m" />
551
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w4190m" />
552
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w5100" />
553
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w5170m" />
554
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w7100" />
555
+ <xs:enumeration value="graphics_processor_type_amd_firepro_w8100" />
556
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6310" />
557
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6320" />
558
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6450" />
559
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6570" />
560
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6620g" />
561
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_6670" />
562
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7310" />
563
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7340" />
564
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7470m" />
565
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7480d" />
566
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7500g" />
567
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7560d" />
568
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7650a" />
569
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7660d" />
570
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7670m" />
571
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7730" />
572
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7750" />
573
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7770" />
574
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7790" />
575
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7850" />
576
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7850m" />
577
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7870" />
578
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7950" />
579
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7970" />
580
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_7990" />
581
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8210" />
582
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8240" />
583
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8250" />
584
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8280" />
585
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8280e" />
586
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8330" />
587
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8330e" />
588
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8350g" />
589
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8400" />
590
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8400e" />
591
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8470d" />
592
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8510g" />
593
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8530m" />
594
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8550m" />
595
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8570" />
596
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8570d" />
597
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8650g" />
598
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8670d" />
599
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8670m" />
600
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8750m" />
601
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8760" />
602
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8790m" />
603
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8850m" />
604
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8890a" />
605
+ <xs:enumeration value="graphics_processor_type_amd_radeon_hd_8970m" />
606
+ <xs:enumeration value="graphics_processor_type_amd_radeon_pro_450" />
607
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r2" />
608
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r3" />
609
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r4" />
610
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5" />
611
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_220" />
612
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_230" />
613
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_235" />
614
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_310" />
615
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_m230" />
616
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_m240" />
617
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_m255" />
618
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_m330" />
619
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r5_m335" />
620
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r6" />
621
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7" />
622
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_240" />
623
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_250" />
624
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_250x" />
625
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_260" />
626
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_260x" />
627
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_340" />
628
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_360" />
629
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_370" />
630
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m260" />
631
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m260x" />
632
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m265" />
633
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m265dx" />
634
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m340" />
635
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m360" />
636
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r7_m370" />
637
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_255" />
638
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_270" />
639
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_270x" />
640
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_280" />
641
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_280x" />
642
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_285" />
643
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_290" />
644
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_290x" />
645
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_295x2" />
646
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_360" />
647
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_380" />
648
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_380x" />
649
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_390" />
650
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_390x" />
651
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_fury" />
652
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_fury_x" />
653
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m265x" />
654
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m275x" />
655
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m280x" />
656
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m290x" />
657
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m370x" />
658
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m380" />
659
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m390" />
660
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_m395" />
661
+ <xs:enumeration value="graphics_processor_type_amd_radeon_r9_nano" />
662
+ <xs:enumeration value="graphics_processor_type_amd_radeon_rx_460" />
663
+ <xs:enumeration value="graphics_processor_type_amd_radeon_rx_470" />
664
+ <xs:enumeration value="graphics_processor_type_amd_radeon_rx_480" />
665
+ <xs:enumeration value="graphics_processor_type_arm_mali_t624" />
666
+ <xs:enumeration value="graphics_processor_type_arm_mali_t764" />
667
+ <xs:enumeration value="graphics_processor_type_aspeed_ast2300" />
668
+ <xs:enumeration value="graphics_processor_type_aspeed_ast2400" />
669
+ <xs:enumeration value="graphics_processor_type_ati_firepro_2460" />
670
+ <xs:enumeration value="graphics_processor_type_ati_mobility_radeon_hd_4330" />
671
+ <xs:enumeration value="graphics_processor_type_ati_radeon_3000" />
672
+ <xs:enumeration value="graphics_processor_type_ati_radeon_hd_3000" />
673
+ <xs:enumeration value="graphics_processor_type_ati_radeon_hd_5450" />
674
+ <xs:enumeration value="graphics_processor_type_ati_radeon_hd_6870" />
675
+ <xs:enumeration value="graphics_processor_type_displaylink_dl_5500" />
676
+ <xs:enumeration value="graphics_processor_type_geforce_310m" />
677
+ <xs:enumeration value="graphics_processor_type_geforce_6100" />
678
+ <xs:enumeration value="graphics_processor_type_geforce_610m" />
679
+ <xs:enumeration value="graphics_processor_type_geforce_7900" />
680
+ <xs:enumeration value="graphics_processor_type_geforce_810m" />
681
+ <xs:enumeration value="graphics_processor_type_geforce_820a" />
682
+ <xs:enumeration value="graphics_processor_type_geforce_820m" />
683
+ <xs:enumeration value="graphics_processor_type_geforce_830a" />
684
+ <xs:enumeration value="graphics_processor_type_geforce_g210" />
685
+ <xs:enumeration value="graphics_processor_type_geforce_gt" />
686
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_550ti" />
687
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_560ti" />
688
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_570" />
689
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_645" />
690
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_650" />
691
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_660" />
692
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_660m" />
693
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_670" />
694
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_680" />
695
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_745" />
696
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_750" />
697
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_760" />
698
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_770" />
699
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_775m" />
700
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_780" />
701
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_780m" />
702
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_850a" />
703
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_860m" />
704
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_870m" />
705
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_960" />
706
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_960m" />
707
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_970" />
708
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_970m" />
709
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_980" />
710
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_980m" />
711
+ <xs:enumeration value="graphics_processor_type_geforce_gtx_titanx" />
712
+ <xs:enumeration value="graphics_processor_type_intel_extreme_graphics_2" />
713
+ <xs:enumeration value="graphics_processor_type_intel_gma" />
714
+ <xs:enumeration value="graphics_processor_type_intel_gma_3150" />
715
+ <xs:enumeration value="graphics_processor_type_intel_gma_3650" />
716
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics" />
717
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_2000" />
718
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_2500" />
719
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_3000" />
720
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_400" />
721
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_4000" />
722
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_4200" />
723
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_4400" />
724
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_4600" />
725
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_5000" />
726
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_510" />
727
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_5100" />
728
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_515" />
729
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_520" />
730
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_530" />
731
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_5300" />
732
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_5500" />
733
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_6000" />
734
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_p4600" />
735
+ <xs:enumeration value="graphics_processor_type_intel_hd_graphics_p530" />
736
+ <xs:enumeration value="graphics_processor_type_intel_iris" />
737
+ <xs:enumeration value="graphics_processor_type_intel_iris_graphics" />
738
+ <xs:enumeration value="graphics_processor_type_intel_iris_graphics_550" />
739
+ <xs:enumeration value="graphics_processor_type_intel_iris_graphics_6100" />
740
+ <xs:enumeration value="graphics_processor_type_intel_iris_pro_graphics" />
741
+ <xs:enumeration value="graphics_processor_type_intel_iris_pro_graphics_5200" />
742
+ <xs:enumeration value="graphics_processor_type_intel_iris_pro_graphics_580" />
743
+ <xs:enumeration value="graphics_processor_type_intel_iris_pro_graphics_6200" />
744
+ <xs:enumeration value="graphics_processor_type_matrox_m9120" />
745
+ <xs:enumeration value="graphics_processor_type_matrox_m9125" />
746
+ <xs:enumeration value="graphics_processor_type_matrox_m9128" />
747
+ <xs:enumeration value="graphics_processor_type_matrox_m9138" />
748
+ <xs:enumeration value="graphics_processor_type_matrox_m9140" />
749
+ <xs:enumeration value="graphics_processor_type_matrox_m9148" />
750
+ <xs:enumeration value="graphics_processor_type_matrox_mga_g200ew" />
751
+ <xs:enumeration value="graphics_processor_type_matrox_mga_g550" />
752
+ <xs:enumeration value="graphics_processor_type_mct_trigger_5_t5_302" />
753
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_210" />
754
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_610m" />
755
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_710m" />
756
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_820m" />
757
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_830m" />
758
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_8400_gs" />
759
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_840m" />
760
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_920m" />
761
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_930m" />
762
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_940m" />
763
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_940mx" />
764
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_fx_5500" />
765
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_220" />
766
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_430" />
767
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_610" />
768
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_610m" />
769
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_620" />
770
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_620m" />
771
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_630" />
772
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_630m" />
773
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_640" />
774
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_640m" />
775
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_650m" />
776
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_705" />
777
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_710" />
778
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_710m" />
779
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_720" />
780
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_720m" />
781
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_730" />
782
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_730a" />
783
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_730m" />
784
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_735m" />
785
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_740" />
786
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_740m" />
787
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_750m" />
788
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_755m" />
789
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gt_840m" />
790
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_1060" />
791
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_1070" />
792
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_1080" />
793
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_460" />
794
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_560_ti" />
795
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_580" />
796
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_645" />
797
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_650" />
798
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_650_ti" />
799
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_650_ti_boost" />
800
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_660" />
801
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_660_ti" />
802
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_660m" />
803
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_670" />
804
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_670m" />
805
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_675m" />
806
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_675mx" />
807
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_680" />
808
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_680m" />
809
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_690" />
810
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_745" />
811
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_750" />
812
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_750_ti" />
813
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_760" />
814
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_760m" />
815
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_765m" />
816
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_770" />
817
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_770m" />
818
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_775m" />
819
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_780" />
820
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_780_ti" />
821
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_780m" />
822
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_850m" />
823
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_860m" />
824
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_870m" />
825
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_880m" />
826
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_940mx" />
827
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_950" />
828
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_950m" />
829
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_960" />
830
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_960m" />
831
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_965m" />
832
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_970" />
833
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_970m" />
834
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_980" />
835
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_980_ti" />
836
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_980m" />
837
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_titan" />
838
+ <xs:enumeration value="graphics_processor_type_nvidia_geforce_gtx_titan_x" />
839
+ <xs:enumeration value="graphics_processor_type_nvidia_kepler" />
840
+ <xs:enumeration value="graphics_processor_type_nvidia_next_generation_ion" />
841
+ <xs:enumeration value="graphics_processor_type_nvidia_nvs_315" />
842
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_2000" />
843
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_2000d" />
844
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_4000" />
845
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_410" />
846
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_5000" />
847
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_600" />
848
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k1100m" />
849
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k1200" />
850
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k2000" />
851
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k2100m" />
852
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k2200" />
853
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k2200m" />
854
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k3100m" />
855
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k4000" />
856
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k4100m" />
857
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k420" />
858
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k4200" />
859
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k600" />
860
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k610m" />
861
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_k620" />
862
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_m1000m" />
863
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_m2000m" />
864
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_m3000m" />
865
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_m500m" />
866
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_nvs_300" />
867
+ <xs:enumeration value="graphics_processor_type_nvidia_quadro_nvs_310" />
868
+ <xs:enumeration value="graphics_processor_type_powervr_sgx545" />
869
+ <xs:enumeration value="graphics_processor_type_via_chromotionhd_2_0" />
870
+ </xs:restriction>
871
+ </xs:simpleType>
872
+ <xs:simpleType name="hard_drive_compatible_case">
873
+ <xs:restriction base="stringNotNull" />
874
+ </xs:simpleType>
875
+ <xs:simpleType name="hard_drive_form_factor">
876
+ <xs:restriction base="xs:token">
877
+ <xs:enumeration value="hard_drive_form_factor_2_5_inch" />
878
+ <xs:enumeration value="hard_drive_form_factor_3_5_inch" />
879
+ <xs:enumeration value="hard_drive_form_factor_m_2" />
880
+ <xs:enumeration value="hard_drive_form_factor_msata" />
881
+ </xs:restriction>
882
+ </xs:simpleType>
883
+ <xs:simpleType name="hard_drive_type">
884
+ <xs:restriction base="xs:token">
885
+ <xs:enumeration value="hard_drive_type_flash" />
886
+ <xs:enumeration value="hard_drive_type_hdd" />
887
+ <xs:enumeration value="hard_drive_type_hybrid" />
888
+ <xs:enumeration value="hard_drive_type_ssd" />
889
+ </xs:restriction>
890
+ </xs:simpleType>
891
+ <xs:simpleType name="hdmi_cable_performance">
892
+ <xs:restriction base="xs:token">
893
+ <xs:enumeration value="highspeed4k" />
894
+ <xs:enumeration value="highspeedwithethernet" />
895
+ <xs:enumeration value="withethernet" />
896
+ </xs:restriction>
897
+ </xs:simpleType>
898
+ <xs:simpleType name="head_unit_features">
899
+ <xs:restriction base="xs:token">
900
+ <xs:enumeration value="aux" />
901
+ <xs:enumeration value="dab-radio" />
902
+ <xs:enumeration value="fm-radio" />
903
+ <xs:enumeration value="memorycard" />
904
+ </xs:restriction>
905
+ </xs:simpleType>
906
+ <xs:simpleType name="head_unit_form_factor">
907
+ <xs:restriction base="xs:token">
908
+ <xs:enumeration value="head_unit_form_factor_1_din" />
909
+ <xs:enumeration value="head_unit_form_factor_2_din" />
910
+ </xs:restriction>
911
+ </xs:simpleType>
912
+ <xs:simpleType name="internal_memory_type">
913
+ <xs:restriction base="xs:token">
914
+ <xs:enumeration value="internal_memory_type_ddr_sdram" />
915
+ <xs:enumeration value="internal_memory_type_ddr2_sdram" />
916
+ <xs:enumeration value="internal_memory_type_ddr3_sdram" />
917
+ <xs:enumeration value="internal_memory_type_ddr3l_sdram" />
918
+ <xs:enumeration value="internal_memory_type_ddr4_sdram" />
919
+ </xs:restriction>
920
+ </xs:simpleType>
921
+ <xs:simpleType name="keyboard_design">
922
+ <xs:restriction base="xs:token">
923
+ <xs:enumeration value="keyboard_design_ergonomically" />
924
+ <xs:enumeration value="keyboard_design_rollable_foldable" />
925
+ </xs:restriction>
926
+ </xs:simpleType>
927
+ <xs:simpleType name="keyboard_technology">
928
+ <xs:restriction base="xs:token">
929
+ <xs:enumeration value="keyboard_technology_dome_switch" />
930
+ <xs:enumeration value="keyboard_technology_mechanical" />
931
+ <xs:enumeration value="keyboard_technology_membrane" />
932
+ <xs:enumeration value="keyboard_technology_scissor_switch" />
933
+ </xs:restriction>
934
+ </xs:simpleType>
935
+ <xs:simpleType name="language">
936
+ <xs:restriction base="xs:token">
937
+ <xs:enumeration value="language_danish" />
938
+ <xs:enumeration value="language_english" />
939
+ <xs:enumeration value="language_finnish" />
940
+ <xs:enumeration value="language_french" />
941
+ <xs:enumeration value="language_german" />
942
+ <xs:enumeration value="language_norwegian" />
943
+ <xs:enumeration value="language_spanish" />
944
+ <xs:enumeration value="language_swedish" />
945
+ </xs:restriction>
946
+ </xs:simpleType>
947
+ <xs:simpleType name="license_type">
948
+ <xs:restriction base="xs:token">
949
+ <xs:enumeration value="academic" />
950
+ <xs:enumeration value="electronic_software_distribution" />
951
+ <xs:enumeration value="oem" />
952
+ <xs:enumeration value="product_key_card" />
953
+ <xs:enumeration value="retail" />
954
+ <xs:enumeration value="subscription" />
955
+ <xs:enumeration value="upgrade" />
956
+ </xs:restriction>
957
+ </xs:simpleType>
958
+ <xs:simpleType name="material">
959
+ <xs:restriction base="xs:token">
960
+ <xs:enumeration value="material_100x280_denier_nylon" />
961
+ <xs:enumeration value="material_1200_d_polyester" />
962
+ <xs:enumeration value="material_1680_d_ballistisk_nylon" />
963
+ <xs:enumeration value="material_1680d_nylon" />
964
+ <xs:enumeration value="material_1680d_polyester" />
965
+ <xs:enumeration value="material_1682_d_nylon" />
966
+ <xs:enumeration value="material_210d_polyester" />
967
+ <xs:enumeration value="material_2520_d_nylon" />
968
+ <xs:enumeration value="material_300_d_polyester" />
969
+ <xs:enumeration value="material_400_d_polyester" />
970
+ <xs:enumeration value="material_500d_polyester" />
971
+ <xs:enumeration value="material_600d_polyester" />
972
+ <xs:enumeration value="material_600dx300d_polyester" />
973
+ <xs:enumeration value="material_630_d_polyamid" />
974
+ <xs:enumeration value="material_750_denier_polyester" />
975
+ <xs:enumeration value="material_840_d_nylon" />
976
+ <xs:enumeration value="material_900_d_nylon" />
977
+ <xs:enumeration value="material_abs_plastic" />
978
+ <xs:enumeration value="material_acrylic" />
979
+ <xs:enumeration value="material_aerospace_grade_aluminum" />
980
+ <xs:enumeration value="material_alcantara_suede_fabric" />
981
+ <xs:enumeration value="material_aluminum" />
982
+ <xs:enumeration value="material_aluminum_alloy" />
983
+ <xs:enumeration value="material_anodized_aluminum" />
984
+ <xs:enumeration value="material_ballistic_nylon" />
985
+ <xs:enumeration value="material_ballistic_polyester" />
986
+ <xs:enumeration value="material_calf_leather" />
987
+ <xs:enumeration value="material_canvas" />
988
+ <xs:enumeration value="material_carbon_fiber" />
989
+ <xs:enumeration value="material_cast_aluminum" />
990
+ <xs:enumeration value="material_copper" />
991
+ <xs:enumeration value="material_cotton" />
992
+ <xs:enumeration value="material_cotton_canvas" />
993
+ <xs:enumeration value="material_cowhide" />
994
+ <xs:enumeration value="material_cyclepet" />
995
+ <xs:enumeration value="material_durable_polyester" />
996
+ <xs:enumeration value="material_eco_leather" />
997
+ <xs:enumeration value="material_elastomer" />
998
+ <xs:enumeration value="material_eve" />
999
+ <xs:enumeration value="material_fabric" />
1000
+ <xs:enumeration value="material_fep" />
1001
+ <xs:enumeration value="material_fiber_glass_reinforced_polyamide" />
1002
+ <xs:enumeration value="material_foam_rubber" />
1003
+ <xs:enumeration value="material_galvanized_steel" />
1004
+ <xs:enumeration value="material_genuine_leather" />
1005
+ <xs:enumeration value="material_glass" />
1006
+ <xs:enumeration value="material_handmade_leather" />
1007
+ <xs:enumeration value="material_imitation_leather" />
1008
+ <xs:enumeration value="material_leather" />
1009
+ <xs:enumeration value="material_leather_like_vinyl" />
1010
+ <xs:enumeration value="material_lycra" />
1011
+ <xs:enumeration value="material_magnesium_alloy" />
1012
+ <xs:enumeration value="material_memory_foam" />
1013
+ <xs:enumeration value="material_metal" />
1014
+ <xs:enumeration value="material_microfibre" />
1015
+ <xs:enumeration value="material_mixed_textile" />
1016
+ <xs:enumeration value="material_mocca" />
1017
+ <xs:enumeration value="material_molded_eva" />
1018
+ <xs:enumeration value="material_neoprene" />
1019
+ <xs:enumeration value="material_nonwovens" />
1020
+ <xs:enumeration value="material_nylon" />
1021
+ <xs:enumeration value="material_nylon_6_6" />
1022
+ <xs:enumeration value="material_pc_abs" />
1023
+ <xs:enumeration value="material_pet" />
1024
+ <xs:enumeration value="material_pet_film" />
1025
+ <xs:enumeration value="material_pet_polyethylene_terephthalate" />
1026
+ <xs:enumeration value="material_plastic" />
1027
+ <xs:enumeration value="material_polyamide" />
1028
+ <xs:enumeration value="material_polybutulen" />
1029
+ <xs:enumeration value="material_polybutylentereftalate" />
1030
+ <xs:enumeration value="material_polycarbonate" />
1031
+ <xs:enumeration value="material_polycarbonate_resin" />
1032
+ <xs:enumeration value="material_polyester" />
1033
+ <xs:enumeration value="material_polyethylene" />
1034
+ <xs:enumeration value="material_polymer" />
1035
+ <xs:enumeration value="material_polystyrene" />
1036
+ <xs:enumeration value="material_polyurethane" />
1037
+ <xs:enumeration value="material_polyurethane_leather" />
1038
+ <xs:enumeration value="material_powder_coated_steel" />
1039
+ <xs:enumeration value="material_ptfe" />
1040
+ <xs:enumeration value="material_pvc" />
1041
+ <xs:enumeration value="material_recycled_pet" />
1042
+ <xs:enumeration value="material_ripstop" />
1043
+ <xs:enumeration value="material_ripstop_nylon" />
1044
+ <xs:enumeration value="material_rubber" />
1045
+ <xs:enumeration value="material_rubber_foam" />
1046
+ <xs:enumeration value="material_sbr" />
1047
+ <xs:enumeration value="material_silicone" />
1048
+ <xs:enumeration value="material_spandex" />
1049
+ <xs:enumeration value="material_stainless_steel" />
1050
+ <xs:enumeration value="material_steel" />
1051
+ <xs:enumeration value="material_structural_plastics" />
1052
+ <xs:enumeration value="material_sturdy_plastic" />
1053
+ <xs:enumeration value="material_synthetic_leather" />
1054
+ <xs:enumeration value="material_teflon" />
1055
+ <xs:enumeration value="material_tempered_glass" />
1056
+ <xs:enumeration value="material_thermoplastic_polyurethane" />
1057
+ <xs:enumeration value="material_twill" />
1058
+ <xs:enumeration value="material_untreated_fabric" />
1059
+ <xs:enumeration value="material_velour" />
1060
+ <xs:enumeration value="material_velvet" />
1061
+ <xs:enumeration value="material_wood" />
1062
+ <xs:enumeration value="material_zinc_alloy" />
1063
+ </xs:restriction>
1064
+ </xs:simpleType>
1065
+ <xs:simpleType name="max_print_resolution_black">
1066
+ <xs:restriction base="xs:token">
1067
+ <xs:enumeration value="max_print_resolution_black_1200x1200" />
1068
+ <xs:enumeration value="max_print_resolution_black_1200x2400" />
1069
+ <xs:enumeration value="max_print_resolution_black_1200x600" />
1070
+ <xs:enumeration value="max_print_resolution_black_1200x6000" />
1071
+ <xs:enumeration value="max_print_resolution_black_2400x1200" />
1072
+ <xs:enumeration value="max_print_resolution_black_2400x600" />
1073
+ <xs:enumeration value="max_print_resolution_black_2880x1440" />
1074
+ <xs:enumeration value="max_print_resolution_black_300x300" />
1075
+ <xs:enumeration value="max_print_resolution_black_300x720" />
1076
+ <xs:enumeration value="max_print_resolution_black_4800x1200" />
1077
+ <xs:enumeration value="max_print_resolution_black_4800x600" />
1078
+ <xs:enumeration value="max_print_resolution_black_5760x1400" />
1079
+ <xs:enumeration value="max_print_resolution_black_5760x1440" />
1080
+ <xs:enumeration value="max_print_resolution_black_6000x1200" />
1081
+ <xs:enumeration value="max_print_resolution_black_600x1200" />
1082
+ <xs:enumeration value="max_print_resolution_black_600x2400" />
1083
+ <xs:enumeration value="max_print_resolution_black_600x600" />
1084
+ </xs:restriction>
1085
+ </xs:simpleType>
1086
+ <xs:simpleType name="max_print_resolution_color">
1087
+ <xs:restriction base="xs:token">
1088
+ <xs:enumeration value="max_print_resolution_color_1200x1200" />
1089
+ <xs:enumeration value="max_print_resolution_color_1200x2400" />
1090
+ <xs:enumeration value="max_print_resolution_color_1200x600" />
1091
+ <xs:enumeration value="max_print_resolution_color_1200x6000" />
1092
+ <xs:enumeration value="max_print_resolution_color_1440x720" />
1093
+ <xs:enumeration value="max_print_resolution_color_2400x1200" />
1094
+ <xs:enumeration value="max_print_resolution_color_2400x600" />
1095
+ <xs:enumeration value="max_print_resolution_color_2880x1440" />
1096
+ <xs:enumeration value="max_print_resolution_color_300x300" />
1097
+ <xs:enumeration value="max_print_resolution_color_38400x600" />
1098
+ <xs:enumeration value="max_print_resolution_color_4800x1200" />
1099
+ <xs:enumeration value="max_print_resolution_color_4800x2400" />
1100
+ <xs:enumeration value="max_print_resolution_color_4800x600" />
1101
+ <xs:enumeration value="max_print_resolution_color_5760x1400" />
1102
+ <xs:enumeration value="max_print_resolution_color_5760x1440" />
1103
+ <xs:enumeration value="max_print_resolution_color_6000x1200" />
1104
+ <xs:enumeration value="max_print_resolution_color_600x1200" />
1105
+ <xs:enumeration value="max_print_resolution_color_600x1600" />
1106
+ <xs:enumeration value="max_print_resolution_color_600x2400" />
1107
+ <xs:enumeration value="max_print_resolution_color_600x600" />
1108
+ <xs:enumeration value="max_print_resolution_color_9600x2400" />
1109
+ <xs:enumeration value="max_print_resolution_color_9600x600" />
1110
+ </xs:restriction>
1111
+ </xs:simpleType>
1112
+ <xs:simpleType name="max_resolution">
1113
+ <xs:restriction base="xs:token">
1114
+ <xs:enumeration value="max_resolution_1080x720" />
1115
+ <xs:enumeration value="max_resolution_1280x1024" />
1116
+ <xs:enumeration value="max_resolution_1280x720" />
1117
+ <xs:enumeration value="max_resolution_1280x800" />
1118
+ <xs:enumeration value="max_resolution_1440x1080" />
1119
+ <xs:enumeration value="max_resolution_1600x1200" />
1120
+ <xs:enumeration value="max_resolution_160x120" />
1121
+ <xs:enumeration value="max_resolution_1920x1080" />
1122
+ <xs:enumeration value="max_resolution_1920x1200" />
1123
+ <xs:enumeration value="max_resolution_1920x1440" />
1124
+ <xs:enumeration value="max_resolution_2048x1152" />
1125
+ <xs:enumeration value="max_resolution_2048x1536" />
1126
+ <xs:enumeration value="max_resolution_2560x1440" />
1127
+ <xs:enumeration value="max_resolution_2560x1600" />
1128
+ <xs:enumeration value="max_resolution_3840x2160" />
1129
+ <xs:enumeration value="max_resolution_3840x2400" />
1130
+ <xs:enumeration value="max_resolution_4096x1600" />
1131
+ <xs:enumeration value="max_resolution_4096x2160" />
1132
+ <xs:enumeration value="max_resolution_4096x3112" />
1133
+ <xs:enumeration value="max_resolution_5120x3200" />
1134
+ <xs:enumeration value="max_resolution_640x480" />
1135
+ <xs:enumeration value="max_resolution_7680x3200" />
1136
+ <xs:enumeration value="max_resolution_800x600" />
1137
+ <xs:enumeration value="max_resolution_960x720" />
1138
+ </xs:restriction>
1139
+ </xs:simpleType>
1140
+ <xs:simpleType name="memory_card_format">
1141
+ <xs:restriction base="xs:token">
1142
+ <xs:enumeration value="memory_card_format_compactflash" />
1143
+ <xs:enumeration value="memory_card_format_microsd" />
1144
+ <xs:enumeration value="memory_card_format_microsdhc" />
1145
+ <xs:enumeration value="memory_card_format_microsdxc" />
1146
+ <xs:enumeration value="memory_card_format_multimediacard" />
1147
+ <xs:enumeration value="memory_card_format_sd" />
1148
+ <xs:enumeration value="memory_card_format_sdhc" />
1149
+ <xs:enumeration value="memory_card_format_sdxc" />
1150
+ <xs:enumeration value="memory_card_format_xd_picture_card" />
1151
+ </xs:restriction>
1152
+ </xs:simpleType>
1153
+ <xs:simpleType name="memory_card_reader_location">
1154
+ <xs:restriction base="xs:token">
1155
+ <xs:enumeration value="express_card_34" />
1156
+ <xs:enumeration value="external" />
1157
+ <xs:enumeration value="inch-tray_3_5" />
1158
+ <xs:enumeration value="inch-tray_5_25" />
1159
+ <xs:enumeration value="pc-card" />
1160
+ <xs:enumeration value="pci_express_card" />
1161
+ </xs:restriction>
1162
+ </xs:simpleType>
1163
+ <xs:simpleType name="mobile_broadband_generation">
1164
+ <xs:restriction base="xs:token">
1165
+ <xs:enumeration value="mobile_broadband_generation_3g" />
1166
+ <xs:enumeration value="mobile_broadband_generation_4g" />
1167
+ </xs:restriction>
1168
+ </xs:simpleType>
1169
+ <xs:simpleType name="motherboard_form_factor">
1170
+ <xs:restriction base="xs:token">
1171
+ <xs:enumeration value="motherboard_form_factor_atx" />
1172
+ <xs:enumeration value="motherboard_form_factor_dtx" />
1173
+ <xs:enumeration value="motherboard_form_factor_extended_atx" />
1174
+ <xs:enumeration value="motherboard_form_factor_hptx" />
1175
+ <xs:enumeration value="motherboard_form_factor_manufacturer_specific" />
1176
+ <xs:enumeration value="motherboard_form_factor_micro_atx" />
1177
+ <xs:enumeration value="motherboard_form_factor_mini_atx" />
1178
+ <xs:enumeration value="motherboard_form_factor_mini_dtx" />
1179
+ <xs:enumeration value="motherboard_form_factor_mini_itx" />
1180
+ <xs:enumeration value="motherboard_form_factor_ssi_ceb" />
1181
+ <xs:enumeration value="motherboard_form_factor_ssi_eeb" />
1182
+ <xs:enumeration value="motherboard_form_factor_ssi_meb" />
1183
+ <xs:enumeration value="motherboard_form_factor_thin_mini_itx" />
1184
+ <xs:enumeration value="motherboard_form_factor_xl_atx" />
1185
+ </xs:restriction>
1186
+ </xs:simpleType>
1187
+ <xs:simpleType name="mount_placement">
1188
+ <xs:restriction base="xs:token">
1189
+ <xs:enumeration value="mount_placement_ceiling" />
1190
+ <xs:enumeration value="mount_placement_floor" />
1191
+ <xs:enumeration value="mount_placement_table" />
1192
+ <xs:enumeration value="mount_placement_wall" />
1193
+ </xs:restriction>
1194
+ </xs:simpleType>
1195
+ <xs:simpleType name="navigation_type">
1196
+ <xs:restriction base="xs:token">
1197
+ <xs:enumeration value="navigation_type_car" />
1198
+ <xs:enumeration value="navigation_type_hiking" />
1199
+ <xs:enumeration value="navigation_type_motorcycle" />
1200
+ <xs:enumeration value="navigation_type_running" />
1201
+ </xs:restriction>
1202
+ </xs:simpleType>
1203
+ <xs:simpleType name="network_cable_category">
1204
+ <xs:restriction base="xs:token">
1205
+ <xs:enumeration value="network_cable_category_cat5" />
1206
+ <xs:enumeration value="network_cable_category_cat5e" />
1207
+ <xs:enumeration value="network_cable_category_cat6" />
1208
+ <xs:enumeration value="network_cable_category_cat6a" />
1209
+ <xs:enumeration value="network_cable_category_cat7" />
1210
+ <xs:enumeration value="network_cable_category_cat7_plus" />
1211
+ </xs:restriction>
1212
+ </xs:simpleType>
1213
+ <xs:simpleType name="operating_system">
1214
+ <xs:restriction base="xs:token">
1215
+ <xs:enumeration value="operating_system_android" />
1216
+ <xs:enumeration value="operating_system_apple_watch_os" />
1217
+ <xs:enumeration value="operating_system_blackberry_os" />
1218
+ <xs:enumeration value="operating_system_chrome_os" />
1219
+ <xs:enumeration value="operating_system_fire_os" />
1220
+ <xs:enumeration value="operating_system_ios" />
1221
+ <xs:enumeration value="operating_system_linux" />
1222
+ <xs:enumeration value="operating_system_mac_os" />
1223
+ <xs:enumeration value="operating_system_os_x" />
1224
+ <xs:enumeration value="operating_system_pebble_os" />
1225
+ <xs:enumeration value="operating_system_samsung" />
1226
+ <xs:enumeration value="operating_system_tizen" />
1227
+ <xs:enumeration value="operating_system_windows" />
1228
+ </xs:restriction>
1229
+ </xs:simpleType>
1230
+ <xs:simpleType name="panel_type">
1231
+ <xs:restriction base="xs:token">
1232
+ <xs:enumeration value="panel_type_a_mva" />
1233
+ <xs:enumeration value="panel_type_a_mva_plus" />
1234
+ <xs:enumeration value="panel_type_ad_pls" />
1235
+ <xs:enumeration value="panel_type_ads_ips" />
1236
+ <xs:enumeration value="panel_type_affs_plus" />
1237
+ <xs:enumeration value="panel_type_ah_ips" />
1238
+ <xs:enumeration value="panel_type_ahva" />
1239
+ <xs:enumeration value="panel_type_e_ips" />
1240
+ <xs:enumeration value="panel_type_h_ips" />
1241
+ <xs:enumeration value="panel_type_ips" />
1242
+ <xs:enumeration value="panel_type_ips2" />
1243
+ <xs:enumeration value="panel_type_mva" />
1244
+ <xs:enumeration value="panel_type_p_ips" />
1245
+ <xs:enumeration value="panel_type_pls" />
1246
+ <xs:enumeration value="panel_type_pva" />
1247
+ <xs:enumeration value="panel_type_s_ips" />
1248
+ <xs:enumeration value="panel_type_s_ips_plus" />
1249
+ <xs:enumeration value="panel_type_s_pva" />
1250
+ <xs:enumeration value="panel_type_super_pls" />
1251
+ <xs:enumeration value="panel_type_tn" />
1252
+ <xs:enumeration value="panel_type_va" />
1253
+ </xs:restriction>
1254
+ </xs:simpleType>
1255
+ <xs:simpleType name="paper_size_supported">
1256
+ <xs:restriction base="xs:token">
1257
+ <xs:enumeration value="paper_size_supported_a1" />
1258
+ <xs:enumeration value="paper_size_supported_a3" />
1259
+ <xs:enumeration value="paper_size_supported_a3_plus" />
1260
+ <xs:enumeration value="paper_size_supported_a4" />
1261
+ <xs:enumeration value="paper_size_supported_a5" />
1262
+ <xs:enumeration value="paper_size_supported_a6" />
1263
+ <xs:enumeration value="paper_size_supported_b3" />
1264
+ <xs:enumeration value="paper_size_supported_b4" />
1265
+ <xs:enumeration value="paper_size_supported_b5" />
1266
+ <xs:enumeration value="paper_size_supported_b6" />
1267
+ <xs:enumeration value="paper_size_supported_c5" />
1268
+ <xs:enumeration value="paper_size_supported_c6" />
1269
+ <xs:enumeration value="paper_size_supported_photo_10x15" />
1270
+ <xs:enumeration value="paper_size_supported_roll_32_9cm" />
1271
+ <xs:enumeration value="paper_size_supported_roll_6_2cm" />
1272
+ </xs:restriction>
1273
+ </xs:simpleType>
1274
+ <xs:simpleType name="phone_functions">
1275
+ <xs:restriction base="xs:token">
1276
+ <xs:enumeration value="answering_machine" />
1277
+ <xs:enumeration value="caller-id" />
1278
+ <xs:enumeration value="multi-lines" />
1279
+ </xs:restriction>
1280
+ </xs:simpleType>
1281
+ <xs:simpleType name="plugsocket_type">
1282
+ <xs:restriction base="xs:token">
1283
+ <xs:enumeration value="type_a" />
1284
+ <xs:enumeration value="type_b" />
1285
+ <xs:enumeration value="type_c" />
1286
+ <xs:enumeration value="type_d" />
1287
+ <xs:enumeration value="type_e" />
1288
+ <xs:enumeration value="type_f" />
1289
+ <xs:enumeration value="type_g" />
1290
+ <xs:enumeration value="type_h" />
1291
+ <xs:enumeration value="type_i" />
1292
+ <xs:enumeration value="type_j" />
1293
+ <xs:enumeration value="type_k" />
1294
+ <xs:enumeration value="type_l" />
1295
+ <xs:enumeration value="type_m" />
1296
+ <xs:enumeration value="type_n" />
1297
+ <xs:enumeration value="type_o" />
1298
+ </xs:restriction>
1299
+ </xs:simpleType>
1300
+ <xs:simpleType name="power_management">
1301
+ <xs:restriction base="xs:token">
1302
+ <xs:enumeration value="power_management_ac_adapter" />
1303
+ <xs:enumeration value="power_management_battery" />
1304
+ <xs:enumeration value="power_management_esata" />
1305
+ <xs:enumeration value="power_management_thunderbolt" />
1306
+ <xs:enumeration value="power_management_usb" />
1307
+ </xs:restriction>
1308
+ </xs:simpleType>
1309
+ <xs:simpleType name="print_server_placement">
1310
+ <xs:restriction base="xs:token">
1311
+ <xs:enumeration value="internal" />
1312
+ </xs:restriction>
1313
+ </xs:simpleType>
1314
+ <xs:simpleType name="printer_functions">
1315
+ <xs:restriction base="xs:token">
1316
+ <xs:enumeration value="printer_functions_copying" />
1317
+ <xs:enumeration value="printer_functions_faxing" />
1318
+ <xs:enumeration value="printer_functions_photo_printing" />
1319
+ <xs:enumeration value="printer_functions_scanning" />
1320
+ </xs:restriction>
1321
+ </xs:simpleType>
1322
+ <xs:simpleType name="printer_interfaces">
1323
+ <xs:restriction base="xs:token">
1324
+ <xs:enumeration value="printer_interfaces_airprint" />
1325
+ <xs:enumeration value="printer_interfaces_bluetooth" />
1326
+ <xs:enumeration value="printer_interfaces_googlecloudprint" />
1327
+ <xs:enumeration value="printer_interfaces_lan" />
1328
+ <xs:enumeration value="printer_interfaces_nfc" />
1329
+ <xs:enumeration value="printer_interfaces_parallel" />
1330
+ <xs:enumeration value="printer_interfaces_pictbridge" />
1331
+ <xs:enumeration value="printer_interfaces_usb" />
1332
+ <xs:enumeration value="printer_interfaces_usb_2_0" />
1333
+ <xs:enumeration value="printer_interfaces_usb_host" />
1334
+ <xs:enumeration value="printer_interfaces_wi_fi" />
1335
+ </xs:restriction>
1336
+ </xs:simpleType>
1337
+ <xs:simpleType name="processor_generation">
1338
+ <xs:restriction base="xs:token">
1339
+ <xs:enumeration value="processor_generation_2" />
1340
+ <xs:enumeration value="processor_generation_3" />
1341
+ <xs:enumeration value="processor_generation_4" />
1342
+ <xs:enumeration value="processor_generation_5" />
1343
+ <xs:enumeration value="processor_generation_6" />
1344
+ <xs:enumeration value="processor_generation_7" />
1345
+ <xs:enumeration value="processor_generation_8" />
1346
+ </xs:restriction>
1347
+ </xs:simpleType>
1348
+ <xs:simpleType name="processor_model">
1349
+ <xs:restriction base="xs:token">
1350
+ <xs:enumeration value="processor_model_a_series" />
1351
+ <xs:enumeration value="processor_model_a10_series" />
1352
+ <xs:enumeration value="processor_model_a4_series" />
1353
+ <xs:enumeration value="processor_model_a6_series" />
1354
+ <xs:enumeration value="processor_model_a8_series" />
1355
+ <xs:enumeration value="processor_model_athlon" />
1356
+ <xs:enumeration value="processor_model_athlon_ii_x4" />
1357
+ <xs:enumeration value="processor_model_atm7021a" />
1358
+ <xs:enumeration value="processor_model_atom" />
1359
+ <xs:enumeration value="processor_model_atom_x5" />
1360
+ <xs:enumeration value="processor_model_celeron" />
1361
+ <xs:enumeration value="processor_model_core_i3" />
1362
+ <xs:enumeration value="processor_model_core_i5" />
1363
+ <xs:enumeration value="processor_model_core_i7" />
1364
+ <xs:enumeration value="processor_model_core_i7_extreme_edition" />
1365
+ <xs:enumeration value="processor_model_core_m" />
1366
+ <xs:enumeration value="processor_model_core_m3" />
1367
+ <xs:enumeration value="processor_model_core_m5" />
1368
+ <xs:enumeration value="processor_model_fx" />
1369
+ <xs:enumeration value="processor_model_pentium" />
1370
+ <xs:enumeration value="processor_model_xeon" />
1371
+ <xs:enumeration value="processor_model_xeon_e3_1200_v2_series" />
1372
+ </xs:restriction>
1373
+ </xs:simpleType>
1374
+ <xs:simpleType name="projector_technology">
1375
+ <xs:restriction base="xs:token">
1376
+ <xs:enumeration value="dlp" />
1377
+ <xs:enumeration value="laser" />
1378
+ <xs:enumeration value="lcd" />
1379
+ <xs:enumeration value="lcos" />
1380
+ <xs:enumeration value="led" />
1381
+ <xs:enumeration value="sxrd" />
1382
+ </xs:restriction>
1383
+ </xs:simpleType>
1384
+ <xs:simpleType name="psu_format">
1385
+ <xs:restriction base="xs:token">
1386
+ <xs:enumeration value="sfx" />
1387
+ <xs:enumeration value="tfx" />
1388
+ </xs:restriction>
1389
+ </xs:simpleType>
1390
+ <xs:simpleType name="raid_type">
1391
+ <xs:restriction base="xs:token">
1392
+ <xs:enumeration value="raid_type_jbod" />
1393
+ <xs:enumeration value="raid_type_raid0" />
1394
+ <xs:enumeration value="raid_type_raid01" />
1395
+ <xs:enumeration value="raid_type_raid1" />
1396
+ <xs:enumeration value="raid_type_raid10" />
1397
+ <xs:enumeration value="raid_type_raid5" />
1398
+ <xs:enumeration value="raid_type_raid50" />
1399
+ <xs:enumeration value="raid_type_raid6" />
1400
+ <xs:enumeration value="raid_type_raid60" />
1401
+ </xs:restriction>
1402
+ </xs:simpleType>
1403
+ <xs:simpleType name="ram_form_factor">
1404
+ <xs:restriction base="xs:token">
1405
+ <xs:enumeration value="ram_form_factor_dimm_184_pin" />
1406
+ <xs:enumeration value="ram_form_factor_dimm_240_pin" />
1407
+ <xs:enumeration value="ram_form_factor_dimm_288_pin" />
1408
+ <xs:enumeration value="ram_form_factor_so_dimm_200_pin" />
1409
+ <xs:enumeration value="ram_form_factor_so_dimm_204_pin" />
1410
+ <xs:enumeration value="ram_form_factor_so_dimm_260_pin" />
1411
+ </xs:restriction>
1412
+ </xs:simpleType>
1413
+ <xs:simpleType name="reception_type">
1414
+ <xs:restriction base="xs:token">
1415
+ <xs:enumeration value="reception_type_am" />
1416
+ <xs:enumeration value="reception_type_fm" />
1417
+ <xs:enumeration value="reception_type_uhf" />
1418
+ <xs:enumeration value="reception_type_vhf" />
1419
+ </xs:restriction>
1420
+ </xs:simpleType>
1421
+ <xs:simpleType name="remote_control_functions">
1422
+ <xs:restriction base="xs:token">
1423
+ <xs:enumeration value="battery_indicator" />
1424
+ <xs:enumeration value="docking_station" />
1425
+ <xs:enumeration value="programmable" />
1426
+ </xs:restriction>
1427
+ </xs:simpleType>
1428
+ <xs:simpleType name="scanner_type">
1429
+ <xs:restriction base="xs:token">
1430
+ <xs:enumeration value="document_scanner" />
1431
+ <xs:enumeration value="film_scanners" />
1432
+ <xs:enumeration value="flatbed_scanner" />
1433
+ <xs:enumeration value="threedimensional_scanners" />
1434
+ </xs:restriction>
1435
+ </xs:simpleType>
1436
+ <xs:simpleType name="screen_protection_type">
1437
+ <xs:restriction base="xs:token">
1438
+ <xs:enumeration value="screen_protection_type_anti_glare" />
1439
+ <xs:enumeration value="screen_protection_type_anti_scratch" />
1440
+ <xs:enumeration value="screen_protection_type_glossy" />
1441
+ <xs:enumeration value="screen_protection_type_privacy" />
1442
+ </xs:restriction>
1443
+ </xs:simpleType>
1444
+ <xs:simpleType name="screen_resolution">
1445
+ <xs:restriction base="xs:token">
1446
+ <xs:enumeration value="screen_resolution_1024x600" />
1447
+ <xs:enumeration value="screen_resolution_1024x758" />
1448
+ <xs:enumeration value="screen_resolution_1024x768" />
1449
+ <xs:enumeration value="screen_resolution_102x65" />
1450
+ <xs:enumeration value="screen_resolution_103x65" />
1451
+ <xs:enumeration value="screen_resolution_108x84" />
1452
+ <xs:enumeration value="screen_resolution_1136x640" />
1453
+ <xs:enumeration value="screen_resolution_1200x800" />
1454
+ <xs:enumeration value="screen_resolution_1280x1024" />
1455
+ <xs:enumeration value="screen_resolution_1280x720" />
1456
+ <xs:enumeration value="screen_resolution_1280x768" />
1457
+ <xs:enumeration value="screen_resolution_1280x800" />
1458
+ <xs:enumeration value="screen_resolution_128x128" />
1459
+ <xs:enumeration value="screen_resolution_128x160" />
1460
+ <xs:enumeration value="screen_resolution_128x32" />
1461
+ <xs:enumeration value="screen_resolution_128x432" />
1462
+ <xs:enumeration value="screen_resolution_128x64" />
1463
+ <xs:enumeration value="screen_resolution_128x80" />
1464
+ <xs:enumeration value="screen_resolution_128x88" />
1465
+ <xs:enumeration value="screen_resolution_128x96" />
1466
+ <xs:enumeration value="screen_resolution_132x32" />
1467
+ <xs:enumeration value="screen_resolution_1334x750" />
1468
+ <xs:enumeration value="screen_resolution_1360x768" />
1469
+ <xs:enumeration value="screen_resolution_1366x768" />
1470
+ <xs:enumeration value="screen_resolution_1400x1050" />
1471
+ <xs:enumeration value="screen_resolution_1440x900" />
1472
+ <xs:enumeration value="screen_resolution_144x176" />
1473
+ <xs:enumeration value="screen_resolution_1600x1050" />
1474
+ <xs:enumeration value="screen_resolution_1600x1200" />
1475
+ <xs:enumeration value="screen_resolution_1600x900" />
1476
+ <xs:enumeration value="screen_resolution_160x128" />
1477
+ <xs:enumeration value="screen_resolution_1680x1050" />
1478
+ <xs:enumeration value="screen_resolution_168x144" />
1479
+ <xs:enumeration value="screen_resolution_176x220" />
1480
+ <xs:enumeration value="screen_resolution_180x160" />
1481
+ <xs:enumeration value="screen_resolution_180x180" />
1482
+ <xs:enumeration value="screen_resolution_1920x1080" />
1483
+ <xs:enumeration value="screen_resolution_1920x1200" />
1484
+ <xs:enumeration value="screen_resolution_2048x1536" />
1485
+ <xs:enumeration value="screen_resolution_216x432" />
1486
+ <xs:enumeration value="screen_resolution_220x176" />
1487
+ <xs:enumeration value="screen_resolution_2304x1440" />
1488
+ <xs:enumeration value="screen_resolution_240x240" />
1489
+ <xs:enumeration value="screen_resolution_240x320" />
1490
+ <xs:enumeration value="screen_resolution_2560x1080" />
1491
+ <xs:enumeration value="screen_resolution_2560x1440" />
1492
+ <xs:enumeration value="screen_resolution_2560x1600" />
1493
+ <xs:enumeration value="screen_resolution_280x280" />
1494
+ <xs:enumeration value="screen_resolution_2880x1620" />
1495
+ <xs:enumeration value="screen_resolution_2880x1800" />
1496
+ <xs:enumeration value="screen_resolution_296x128" />
1497
+ <xs:enumeration value="screen_resolution_3200x1800" />
1498
+ <xs:enumeration value="screen_resolution_320x222" />
1499
+ <xs:enumeration value="screen_resolution_320x240" />
1500
+ <xs:enumeration value="screen_resolution_320x320" />
1501
+ <xs:enumeration value="screen_resolution_320x480" />
1502
+ <xs:enumeration value="screen_resolution_3440x1440" />
1503
+ <xs:enumeration value="screen_resolution_360x325" />
1504
+ <xs:enumeration value="screen_resolution_360x330" />
1505
+ <xs:enumeration value="screen_resolution_3840x2126" />
1506
+ <xs:enumeration value="screen_resolution_3840x2160" />
1507
+ <xs:enumeration value="screen_resolution_396x162" />
1508
+ <xs:enumeration value="screen_resolution_400x240" />
1509
+ <xs:enumeration value="screen_resolution_400x400" />
1510
+ <xs:enumeration value="screen_resolution_4096x2160" />
1511
+ <xs:enumeration value="screen_resolution_4096x2304" />
1512
+ <xs:enumeration value="screen_resolution_432x240" />
1513
+ <xs:enumeration value="screen_resolution_480x272" />
1514
+ <xs:enumeration value="screen_resolution_480x360" />
1515
+ <xs:enumeration value="screen_resolution_480x854" />
1516
+ <xs:enumeration value="screen_resolution_5120x2880" />
1517
+ <xs:enumeration value="screen_resolution_600x800" />
1518
+ <xs:enumeration value="screen_resolution_640x480" />
1519
+ <xs:enumeration value="screen_resolution_70x70" />
1520
+ <xs:enumeration value="screen_resolution_768x1024" />
1521
+ <xs:enumeration value="screen_resolution_800x480" />
1522
+ <xs:enumeration value="screen_resolution_800x600" />
1523
+ <xs:enumeration value="screen_resolution_854x480" />
1524
+ <xs:enumeration value="screen_resolution_940x560" />
1525
+ <xs:enumeration value="screen_resolution_960x540" />
1526
+ <xs:enumeration value="screen_resolution_960x640" />
1527
+ <xs:enumeration value="screen_resolution_960x960" />
1528
+ <xs:enumeration value="screen_resolution_96x64" />
1529
+ </xs:restriction>
1530
+ </xs:simpleType>
1531
+ <xs:simpleType name="screen_surface_color">
1532
+ <xs:restriction base="xs:token">
1533
+ <xs:enumeration value="grey" />
1534
+ <xs:enumeration value="silver" />
1535
+ <xs:enumeration value="white" />
1536
+ </xs:restriction>
1537
+ </xs:simpleType>
1538
+ <xs:simpleType name="sim_card_size">
1539
+ <xs:restriction base="xs:token">
1540
+ <xs:enumeration value="sim_card_size_micro" />
1541
+ <xs:enumeration value="sim_card_size_mini" />
1542
+ <xs:enumeration value="sim_card_size_nano" />
1543
+ <xs:enumeration value="sim_card_size_standard" />
1544
+ </xs:restriction>
1545
+ </xs:simpleType>
1546
+ <xs:simpleType name="socket_type">
1547
+ <xs:restriction base="xs:token">
1548
+ <xs:enumeration value="socket_type_am1" />
1549
+ <xs:enumeration value="socket_type_am3plus" />
1550
+ <xs:enumeration value="socket_type_fm1" />
1551
+ <xs:enumeration value="socket_type_fm2" />
1552
+ <xs:enumeration value="socket_type_fm2plus" />
1553
+ <xs:enumeration value="socket_type_lga1150" />
1554
+ <xs:enumeration value="socket_type_lga1151" />
1555
+ <xs:enumeration value="socket_type_lga1155" />
1556
+ <xs:enumeration value="socket_type_lga1156" />
1557
+ <xs:enumeration value="socket_type_lga1170" />
1558
+ <xs:enumeration value="socket_type_lga1366" />
1559
+ <xs:enumeration value="socket_type_lga2011" />
1560
+ <xs:enumeration value="socket_type_lga2011_v3" />
1561
+ </xs:restriction>
1562
+ </xs:simpleType>
1563
+ <xs:simpleType name="sound_card_type">
1564
+ <xs:restriction base="xs:token">
1565
+ <xs:enumeration value="sound_card_type_5_0" />
1566
+ <xs:enumeration value="sound_card_type_5_1" />
1567
+ <xs:enumeration value="sound_card_type_7_1" />
1568
+ </xs:restriction>
1569
+ </xs:simpleType>
1570
+ <xs:simpleType name="sound_type">
1571
+ <xs:restriction base="xs:token">
1572
+ <xs:enumeration value="sound_type_mono" />
1573
+ <xs:enumeration value="sound_type_stereo" />
1574
+ </xs:restriction>
1575
+ </xs:simpleType>
1576
+ <xs:simpleType name="speaker_configuration">
1577
+ <xs:restriction base="xs:token">
1578
+ <xs:enumeration value="speaker_configuration_1_0_channel" />
1579
+ <xs:enumeration value="speaker_configuration_1_1_channel" />
1580
+ <xs:enumeration value="speaker_configuration_2_1_channel" />
1581
+ <xs:enumeration value="speaker_configuration_3_1_channel" />
1582
+ <xs:enumeration value="speaker_configuration_4_1_channel" />
1583
+ <xs:enumeration value="speaker_configuration_5_0_channel" />
1584
+ <xs:enumeration value="speaker_configuration_5_1_channel" />
1585
+ <xs:enumeration value="speaker_configuration_6_1_channel" />
1586
+ <xs:enumeration value="speaker_configuration_7_1_channel" />
1587
+ <xs:enumeration value="speaker_configuration_8_1_channel" />
1588
+ <xs:enumeration value="speaker_configuration_9_1_channel" />
1589
+ </xs:restriction>
1590
+ </xs:simpleType>
1591
+ <xs:simpleType name="stereo_features">
1592
+ <xs:restriction base="xs:token">
1593
+ <xs:enumeration value="bluetooth" />
1594
+ <xs:enumeration value="cassette_player" />
1595
+ <xs:enumeration value="cd_player" />
1596
+ <xs:enumeration value="docking" />
1597
+ <xs:enumeration value="radio_tuner" />
1598
+ <xs:enumeration value="turntable" />
1599
+ </xs:restriction>
1600
+ </xs:simpleType>
1601
+ <xs:simpleType name="supported_motherboards">
1602
+ <xs:restriction base="xs:token">
1603
+ <xs:enumeration value="supported_motherboards_atx" />
1604
+ <xs:enumeration value="supported_motherboards_btx" />
1605
+ <xs:enumeration value="supported_motherboards_dtx" />
1606
+ <xs:enumeration value="supported_motherboards_extended_atx" />
1607
+ <xs:enumeration value="supported_motherboards_hptx" />
1608
+ <xs:enumeration value="supported_motherboards_micro_atx" />
1609
+ <xs:enumeration value="supported_motherboards_micro_btx" />
1610
+ <xs:enumeration value="supported_motherboards_mini_atx" />
1611
+ <xs:enumeration value="supported_motherboards_mini_itx" />
1612
+ <xs:enumeration value="supported_motherboards_nano_itx" />
1613
+ <xs:enumeration value="supported_motherboards_pico_btx" />
1614
+ <xs:enumeration value="supported_motherboards_pico_itx" />
1615
+ <xs:enumeration value="supported_motherboards_ssi_ceb" />
1616
+ <xs:enumeration value="supported_motherboards_ssi_eeb" />
1617
+ <xs:enumeration value="supported_motherboards_ucff_nuc" />
1618
+ </xs:restriction>
1619
+ </xs:simpleType>
1620
+ <xs:simpleType name="supported_operators">
1621
+ <xs:restriction base="xs:token">
1622
+ <xs:enumeration value="boxer" />
1623
+ <xs:enumeration value="canaldigital" />
1624
+ <xs:enumeration value="comhem" />
1625
+ <xs:enumeration value="riks-tv" />
1626
+ <xs:enumeration value="viasat" />
1627
+ </xs:restriction>
1628
+ </xs:simpleType>
1629
+ <xs:simpleType name="supported_resolution_formats">
1630
+ <xs:restriction base="xs:token">
1631
+ <xs:enumeration value="supported_resolution_formats_1080i" />
1632
+ <xs:enumeration value="supported_resolution_formats_1080p" />
1633
+ <xs:enumeration value="supported_resolution_formats_480p" />
1634
+ <xs:enumeration value="supported_resolution_formats_4k" />
1635
+ <xs:enumeration value="supported_resolution_formats_576p" />
1636
+ <xs:enumeration value="supported_resolution_formats_720p" />
1637
+ </xs:restriction>
1638
+ </xs:simpleType>
1639
+ <xs:simpleType name="supported_video_formats">
1640
+ <xs:restriction base="xs:token">
1641
+ <xs:enumeration value="supported_video_formats_1080i" />
1642
+ <xs:enumeration value="supported_video_formats_1080p" />
1643
+ <xs:enumeration value="supported_video_formats_2160p" />
1644
+ <xs:enumeration value="supported_video_formats_4320p" />
1645
+ <xs:enumeration value="supported_video_formats_480i" />
1646
+ <xs:enumeration value="supported_video_formats_720i" />
1647
+ <xs:enumeration value="supported_video_formats_720p" />
1648
+ <xs:enumeration value="supported_video_formats_vga_640x480" />
1649
+ </xs:restriction>
1650
+ </xs:simpleType>
1651
+ <xs:simpleType name="tablet_cases_and_covers_compability">
1652
+ <xs:restriction base="xs:token">
1653
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_4th_gen" />
1654
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_air" />
1655
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_air_2" />
1656
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_mini" />
1657
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_mini_2" />
1658
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_mini_3" />
1659
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_mini_4" />
1660
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_pro_12_9_inch" />
1661
+ <xs:enumeration value="tablet_cases_and_covers_compability_apple_ipad_pro_9_7_inch" />
1662
+ <xs:enumeration value="tablet_cases_and_covers_compability_samsung_galaxy_tab_3_10_1_inch" />
1663
+ <xs:enumeration value="tablet_cases_and_covers_compability_samsung_galaxy_tab_4_active_8_inch" />
1664
+ <xs:enumeration value="tablet_cases_and_covers_compability_samsung_galaxy_tab_a_10_1" />
1665
+ <xs:enumeration value="tablet_cases_and_covers_compability_samsung_galaxy_tab_s2_9_7" />
1666
+ </xs:restriction>
1667
+ </xs:simpleType>
1668
+ <xs:simpleType name="trackball_connectors">
1669
+ <xs:restriction base="xs:token">
1670
+ <xs:enumeration value="trackball_connectors_2_4ghz" />
1671
+ <xs:enumeration value="trackball_connectors_5ghz" />
1672
+ <xs:enumeration value="trackball_connectors_bluetooth" />
1673
+ <xs:enumeration value="trackball_connectors_bluetooth_4_0" />
1674
+ <xs:enumeration value="trackball_connectors_ps_2" />
1675
+ <xs:enumeration value="trackball_connectors_rf" />
1676
+ <xs:enumeration value="trackball_connectors_usb" />
1677
+ </xs:restriction>
1678
+ </xs:simpleType>
1679
+ <xs:simpleType name="tuner_type">
1680
+ <xs:restriction base="xs:token">
1681
+ <xs:enumeration value="tuner_type_am" />
1682
+ <xs:enumeration value="tuner_type_dab" />
1683
+ <xs:enumeration value="tuner_type_dab_plus" />
1684
+ <xs:enumeration value="tuner_type_fm" />
1685
+ <xs:enumeration value="tuner_type_internetradio" />
1686
+ <xs:enumeration value="tuner_type_rds_radio" />
1687
+ </xs:restriction>
1688
+ </xs:simpleType>
1689
+ <xs:simpleType name="turntable_drive_method">
1690
+ <xs:restriction base="xs:token">
1691
+ <xs:enumeration value="turntable_drive_method_belt_driven" />
1692
+ <xs:enumeration value="turntable_drive_method_direct_driven" />
1693
+ </xs:restriction>
1694
+ </xs:simpleType>
1695
+ <xs:simpleType name="tv_display_technology">
1696
+ <xs:restriction base="xs:token">
1697
+ <xs:enumeration value="tv_display_technology_lcd" />
1698
+ <xs:enumeration value="tv_display_technology_led" />
1699
+ <xs:enumeration value="tv_display_technology_oled" />
1700
+ <xs:enumeration value="tv_display_technology_plasma" />
1701
+ </xs:restriction>
1702
+ </xs:simpleType>
1703
+ <xs:simpleType name="type_of_binocular">
1704
+ <xs:restriction base="xs:token">
1705
+ <xs:enumeration value="binocular" />
1706
+ <xs:enumeration value="monocular" />
1707
+ <xs:enumeration value="observation_binoculars" />
1708
+ <xs:enumeration value="spotting_scope" />
1709
+ <xs:enumeration value="telescope" />
1710
+ </xs:restriction>
1711
+ </xs:simpleType>
1712
+ <xs:simpleType name="type_of_binocular_accessories">
1713
+ <xs:restriction base="xs:token">
1714
+ <xs:enumeration value="adapter" />
1715
+ <xs:enumeration value="lens_accessories" />
1716
+ <xs:enumeration value="strap" />
1717
+ </xs:restriction>
1718
+ </xs:simpleType>
1719
+ <xs:simpleType name="type_of_camera_bag">
1720
+ <xs:restriction base="xs:token">
1721
+ <xs:enumeration value="type_of_camera_bag_backpack" />
1722
+ <xs:enumeration value="type_of_camera_bag_bumper" />
1723
+ <xs:enumeration value="type_of_camera_bag_carrying_case" />
1724
+ <xs:enumeration value="type_of_camera_bag_cases" />
1725
+ <xs:enumeration value="type_of_camera_bag_hard_case" />
1726
+ <xs:enumeration value="type_of_camera_bag_holster_case" />
1727
+ <xs:enumeration value="type_of_camera_bag_pouch" />
1728
+ <xs:enumeration value="type_of_camera_bag_protective_case" />
1729
+ <xs:enumeration value="type_of_camera_bag_shoulder_bag" />
1730
+ <xs:enumeration value="type_of_camera_bag_wallet" />
1731
+ <xs:enumeration value="type_of_camera_bag_waterproof_cases" />
1732
+ </xs:restriction>
1733
+ </xs:simpleType>
1734
+ <xs:simpleType name="type_of_camera_handle">
1735
+ <xs:restriction base="xs:token">
1736
+ <xs:enumeration value="dual_hand_grips" />
1737
+ <xs:enumeration value="side_handles" />
1738
+ <xs:enumeration value="single_hand_grips" />
1739
+ <xs:enumeration value="topside_hand_grips" />
1740
+ </xs:restriction>
1741
+ </xs:simpleType>
1742
+ <xs:simpleType name="type_of_camera_lens">
1743
+ <xs:restriction base="xs:token">
1744
+ <xs:enumeration value="type_of_camera_lens_fisheye" />
1745
+ <xs:enumeration value="type_of_camera_lens_macro" />
1746
+ <xs:enumeration value="type_of_camera_lens_macro_zoom" />
1747
+ <xs:enumeration value="type_of_camera_lens_normal" />
1748
+ <xs:enumeration value="type_of_camera_lens_tele" />
1749
+ <xs:enumeration value="type_of_camera_lens_tele_zoom" />
1750
+ <xs:enumeration value="type_of_camera_lens_wide_angle" />
1751
+ <xs:enumeration value="type_of_camera_lens_wide_angle_zoom" />
1752
+ <xs:enumeration value="type_of_camera_lens_zoom" />
1753
+ </xs:restriction>
1754
+ </xs:simpleType>
1755
+ <xs:simpleType name="type_of_cellphone">
1756
+ <xs:restriction base="xs:token">
1757
+ <xs:enumeration value="type_of_cellphone_featurephone" />
1758
+ <xs:enumeration value="type_of_cellphone_smartphone" />
1759
+ </xs:restriction>
1760
+ </xs:simpleType>
1761
+ <xs:simpleType name="type_of_cellphone_charger">
1762
+ <xs:restriction base="xs:token">
1763
+ <xs:enumeration value="lightning" />
1764
+ <xs:enumeration value="micro-usb" />
1765
+ <xs:enumeration value="mini-usb" />
1766
+ <xs:enumeration value="pin-30" />
1767
+ <xs:enumeration value="usb_type-c" />
1768
+ </xs:restriction>
1769
+ </xs:simpleType>
1770
+ <xs:simpleType name="type_of_chassis">
1771
+ <xs:restriction base="xs:token">
1772
+ <xs:enumeration value="type_of_chassis_cube" />
1773
+ <xs:enumeration value="type_of_chassis_desktop" />
1774
+ <xs:enumeration value="type_of_chassis_fulltower" />
1775
+ <xs:enumeration value="type_of_chassis_htpc" />
1776
+ <xs:enumeration value="type_of_chassis_microtower" />
1777
+ <xs:enumeration value="type_of_chassis_miditower" />
1778
+ <xs:enumeration value="type_of_chassis_minidesktop_pc" />
1779
+ <xs:enumeration value="type_of_chassis_minitower" />
1780
+ <xs:enumeration value="type_of_chassis_test_bench" />
1781
+ </xs:restriction>
1782
+ </xs:simpleType>
1783
+ <xs:simpleType name="type_of_cover">
1784
+ <xs:restriction base="xs:token">
1785
+ <xs:enumeration value="type_of_cover_backpack" />
1786
+ <xs:enumeration value="type_of_cover_carrying_case" />
1787
+ <xs:enumeration value="type_of_cover_cases" />
1788
+ <xs:enumeration value="type_of_cover_holster_case" />
1789
+ <xs:enumeration value="type_of_cover_protective_case" />
1790
+ <xs:enumeration value="type_of_cover_shoulder_bag" />
1791
+ <xs:enumeration value="type_of_cover_wallet" />
1792
+ <xs:enumeration value="type_of_cover_wrist_bag" />
1793
+ </xs:restriction>
1794
+ </xs:simpleType>
1795
+ <xs:simpleType name="type_of_developing_and_processing_equipm">
1796
+ <xs:restriction base="xs:token">
1797
+ <xs:enumeration value="film_washers" />
1798
+ <xs:enumeration value="print_washers" />
1799
+ <xs:enumeration value="tanks_and_drums" />
1800
+ </xs:restriction>
1801
+ </xs:simpleType>
1802
+ <xs:simpleType name="type_of_digital_tuner">
1803
+ <xs:restriction base="xs:token">
1804
+ <xs:enumeration value="type_of_digital_tuner_dvb_c" />
1805
+ <xs:enumeration value="type_of_digital_tuner_dvb_c2" />
1806
+ <xs:enumeration value="type_of_digital_tuner_dvb_s" />
1807
+ <xs:enumeration value="type_of_digital_tuner_dvb_s2" />
1808
+ <xs:enumeration value="type_of_digital_tuner_dvb_t" />
1809
+ <xs:enumeration value="type_of_digital_tuner_dvb_t2" />
1810
+ </xs:restriction>
1811
+ </xs:simpleType>
1812
+ <xs:simpleType name="type_of_disc_drive">
1813
+ <xs:restriction base="xs:token">
1814
+ <xs:enumeration value="front_loaded_with_tray" />
1815
+ <xs:enumeration value="slot-in" />
1816
+ <xs:enumeration value="top-fed" />
1817
+ </xs:restriction>
1818
+ </xs:simpleType>
1819
+ <xs:simpleType name="type_of_electronics_cleaner">
1820
+ <xs:restriction base="xs:token">
1821
+ <xs:enumeration value="air_compressor_cleaning" />
1822
+ <xs:enumeration value="lens_and_optics_cleaning" />
1823
+ <xs:enumeration value="screen_and_display_cleaning" />
1824
+ </xs:restriction>
1825
+ </xs:simpleType>
1826
+ <xs:simpleType name="type_of_enlarging_equipment">
1827
+ <xs:restriction base="xs:token">
1828
+ <xs:enumeration value="enlargers" />
1829
+ <xs:enumeration value="enlarging_heads" />
1830
+ <xs:enumeration value="enlarging_lenses" />
1831
+ </xs:restriction>
1832
+ </xs:simpleType>
1833
+ <xs:simpleType name="type_of_flash">
1834
+ <xs:restriction base="xs:token">
1835
+ <xs:enumeration value="ordinary_flash" />
1836
+ <xs:enumeration value="ring_flash" />
1837
+ <xs:enumeration value="slave_flash" />
1838
+ </xs:restriction>
1839
+ </xs:simpleType>
1840
+ <xs:simpleType name="type_of_flash_accessories">
1841
+ <xs:restriction base="xs:token">
1842
+ <xs:enumeration value="flash_modifiers" />
1843
+ <xs:enumeration value="flash_pouches" />
1844
+ <xs:enumeration value="hot_shoe_adapters" />
1845
+ <xs:enumeration value="ring_lights" />
1846
+ </xs:restriction>
1847
+ </xs:simpleType>
1848
+ <xs:simpleType name="type_of_gps_mount">
1849
+ <xs:restriction base="xs:token">
1850
+ <xs:enumeration value="bike_mount" />
1851
+ <xs:enumeration value="car_mount" />
1852
+ <xs:enumeration value="motor_cycle" />
1853
+ </xs:restriction>
1854
+ </xs:simpleType>
1855
+ <xs:simpleType name="type_of_light_meter">
1856
+ <xs:restriction base="xs:token">
1857
+ <xs:enumeration value="analogue" />
1858
+ <xs:enumeration value="digital" />
1859
+ </xs:restriction>
1860
+ </xs:simpleType>
1861
+ <xs:simpleType name="type_of_mobile_broadband">
1862
+ <xs:restriction base="xs:token">
1863
+ <xs:enumeration value="type_of_mobile_broadband_3g" />
1864
+ <xs:enumeration value="type_of_mobile_broadband_4g" />
1865
+ <xs:enumeration value="type_of_mobile_broadband_5g" />
1866
+ <xs:enumeration value="type_of_mobile_broadband_cdma_evo" />
1867
+ <xs:enumeration value="type_of_mobile_broadband_nmt" />
1868
+ </xs:restriction>
1869
+ </xs:simpleType>
1870
+ <xs:simpleType name="type_of_photo_chemicals">
1871
+ <xs:restriction base="xs:token">
1872
+ <xs:enumeration value="film_processors" />
1873
+ <xs:enumeration value="fixers" />
1874
+ <xs:enumeration value="paper_processors" />
1875
+ <xs:enumeration value="stop_baths" />
1876
+ <xs:enumeration value="toners" />
1877
+ </xs:restriction>
1878
+ </xs:simpleType>
1879
+ <xs:simpleType name="type_of_printer_accessories">
1880
+ <xs:restriction base="xs:token">
1881
+ <xs:enumeration value="cleaning_maintenance" />
1882
+ <xs:enumeration value="filteration_system" />
1883
+ <xs:enumeration value="label_rewinder" />
1884
+ <xs:enumeration value="printhead" />
1885
+ <xs:enumeration value="templates" />
1886
+ </xs:restriction>
1887
+ </xs:simpleType>
1888
+ <xs:simpleType name="type_of_safelight">
1889
+ <xs:restriction base="xs:token">
1890
+ <xs:enumeration value="coated_bulb" />
1891
+ <xs:enumeration value="round" />
1892
+ <xs:enumeration value="size_10x12" />
1893
+ <xs:enumeration value="size_5x7" />
1894
+ </xs:restriction>
1895
+ </xs:simpleType>
1896
+ <xs:simpleType name="type_of_speaker">
1897
+ <xs:restriction base="xs:token">
1898
+ <xs:enumeration value="component_speaker_system" />
1899
+ <xs:enumeration value="crossovers" />
1900
+ <xs:enumeration value="full-range_speakers" />
1901
+ <xs:enumeration value="mid-range_speakers" />
1902
+ <xs:enumeration value="tweeters" />
1903
+ <xs:enumeration value="woofers" />
1904
+ </xs:restriction>
1905
+ </xs:simpleType>
1906
+ <xs:simpleType name="type_of_spotting_scope_accessories">
1907
+ <xs:restriction base="xs:token">
1908
+ <xs:enumeration value="bore_sight" />
1909
+ <xs:enumeration value="laser_sight" />
1910
+ <xs:enumeration value="protection" />
1911
+ </xs:restriction>
1912
+ </xs:simpleType>
1913
+ <xs:simpleType name="type_of_studio_lights">
1914
+ <xs:restriction base="xs:token">
1915
+ <xs:enumeration value="ellipsoidals" />
1916
+ <xs:enumeration value="focusing_floods" />
1917
+ <xs:enumeration value="fresnels" />
1918
+ <xs:enumeration value="multilight" />
1919
+ <xs:enumeration value="scooplights" />
1920
+ <xs:enumeration value="singlelight" />
1921
+ <xs:enumeration value="softlights" />
1922
+ <xs:enumeration value="spots" />
1923
+ </xs:restriction>
1924
+ </xs:simpleType>
1925
+ <xs:simpleType name="type_of_telescope_accessories">
1926
+ <xs:restriction base="xs:token">
1927
+ <xs:enumeration value="eyepiece" />
1928
+ <xs:enumeration value="filter" />
1929
+ <xs:enumeration value="lense" />
1930
+ <xs:enumeration value="mount" />
1931
+ </xs:restriction>
1932
+ </xs:simpleType>
1933
+ <xs:simpleType name="type_of_tripodmonopod">
1934
+ <xs:restriction base="xs:token">
1935
+ <xs:enumeration value="type_of_tripodmonopod_clamp" />
1936
+ <xs:enumeration value="type_of_tripodmonopod_monopod" />
1937
+ <xs:enumeration value="type_of_tripodmonopod_stand" />
1938
+ <xs:enumeration value="type_of_tripodmonopod_tripod_head" />
1939
+ </xs:restriction>
1940
+ </xs:simpleType>
1941
+ <xs:simpleType name="type_of_tripodmonopod_accessories">
1942
+ <xs:restriction base="xs:token">
1943
+ <xs:enumeration value="camera_stand_head" />
1944
+ <xs:enumeration value="quick_release_plate" />
1945
+ </xs:restriction>
1946
+ </xs:simpleType>
1947
+ <xs:simpleType name="type_of_turntable">
1948
+ <xs:restriction base="xs:token">
1949
+ <xs:enumeration value="full-automatic" />
1950
+ <xs:enumeration value="manual" />
1951
+ <xs:enumeration value="semi-automatic" />
1952
+ </xs:restriction>
1953
+ </xs:simpleType>
1954
+ <xs:simpleType name="usage_of_speaker_cables">
1955
+ <xs:restriction base="xs:token">
1956
+ <xs:enumeration value="bi-amp" />
1957
+ <xs:enumeration value="bi-wire" />
1958
+ <xs:enumeration value="single-wire" />
1959
+ <xs:enumeration value="tri-wire" />
1960
+ </xs:restriction>
1961
+ </xs:simpleType>
1962
+ <xs:simpleType name="usb_version">
1963
+ <xs:restriction base="xs:token">
1964
+ <xs:enumeration value="channels_2_0" />
1965
+ <xs:enumeration value="channels_3_1" />
1966
+ </xs:restriction>
1967
+ </xs:simpleType>
1968
+ <xs:simpleType name="webcam_functions">
1969
+ <xs:restriction base="xs:token">
1970
+ <xs:enumeration value="autofocus" />
1971
+ <xs:enumeration value="built-in_microphone" />
1972
+ <xs:enumeration value="digital_zoom" />
1973
+ </xs:restriction>
1974
+ </xs:simpleType>
1975
+ <xs:simpleType name="vehicle_camera_functions">
1976
+ <xs:restriction base="xs:token">
1977
+ <xs:enumeration value="collision_warning" />
1978
+ <xs:enumeration value="parking_mode" />
1979
+ </xs:restriction>
1980
+ </xs:simpleType>
1981
+ <xs:simpleType name="video_camera_functions">
1982
+ <xs:restriction base="xs:token">
1983
+ <xs:enumeration value="still_pictures" />
1984
+ </xs:restriction>
1985
+ </xs:simpleType>
1986
+ </xs:schema>